Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Nigel Wade Newsgroups: comp.lang.java.programmer Subject: Re: Prevent Eclipse from IO access to source code on *any* GUI interaction Date: Tue, 08 Jan 2013 09:37:52 +0000 Lines: 42 Message-ID: References: <50eb3ae3$0$9515$9b4e6d93@newsspool1.arcor-online.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Trace: individual.net aNgIO91z96TuUa3632154ggYk5+U6DUEyeOXSzGh2BMa2xlL66u+o6ZW92smAoU3x2 Cancel-Lock: sha1:pgQXpWKSMDKMqU3W0OZ4tbKKR+k= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120421 Thunderbird/12.0 In-Reply-To: <50eb3ae3$0$9515$9b4e6d93@newsspool1.arcor-online.net> Xref: csiph.com comp.lang.java.programmer:21205 On 07/01/13 21:15, Marcel Müller wrote: > Hi, > > I am working with Eclipse Juno in a cross platform development. The > source code is on a NFS server, which is not that fast. > Unfortunately Eclipse seems to access the source files over and over, I > guess to verify whether they are modified or removed in the file system. > This causes GUI interactions like moving files from one editor to > another to become incredibly slow. It sometimes takes seconds until the > green highlight responds to mouse movements. And often I create new > editors accidentally. Other actions like changing the current file are > affected too. > > Is it possible to avoid these kind of access? I do not need the up to > date checks. Especially not /that/ often. > > Using a local workspace speed up the things at least by a factor 10. But > this also increases the compile time on the remote machine by a factor > 10, which is definitely undesirable. > > > Marcel I fully understand the problem, it's just the same with NetBeans. I find it unworkable to have project source on an NFS server. I would recommend that you install sub-version, or some other version control system on the NFS server. Choose one which is well supported in Eclipse. I don't use use Eclipes so can't recommend the best choice. I use the SVN plugin in NetBeans, which allows me to work from home just as easily as from my desktop at work. Keep the repository on the central server. Check out a working copy which is then local to your IDE. Perform regular check-in/commit as appropriate. You can then build anywhere you wish, just check out/update the latest copy on the build system (or any other previous revision) and build it. You also get added the benefit of full revision control, which is something I'd recommend for anyone. -- Nigel Wade