vote up 7 vote down star
3

Hi all,

I'm using TortoiseSVN on my development machine (running Windows Server 2003) and VisualSVN Server on the server side. Both are the latest versions (against Subversion 1.6.5).

Everything works well generally; however I'm getting a little frustrated with the TortoiseSVN file overlays (the little icons that show locked or modified statuses on the files in Explorer). Sometimes these overlays seem to update instantly after a commit or lock, sometimes they only change after a couple of refreshes, and sometimes they show completely the wrong status until the next reboot.

It might be an impossible question to answer, given the amount of variables (other installed software, for example), but are there any known tricks to speed up the updating of these overlays?

flag

3 Answers

vote up 7 vote down check

By far the biggest performance increase I got was to set the client's Icon Overlays to not process the whole hard drive, only the locations my SVN files live in.

To do this, open the settings (right-click in Explorer->TortoiseSVN->Settings), select Icon Overlays, then in the Exclude paths: enter c:\*

In the Include paths: enter the paths to your Subversion working copy directories (for me all are under c:\subversion\* and c:\workspaces\*)

Use a newline to separate entries (see screenshot)

This made the client seem a thousand times quicker.

This screenshot shows how to exclude c: and d: drives, just including the relevant directories:

overlays excludes screenshot

You can get some more performance tips from the TortoiseSVN docs.

link|flag
Great, I didn't know that! Note that the directories are semi-colon delimited. – Paul Lammertsma Oct 6 at 14:22
When you say 'only the locations my SVN files live in', do you mean the actual SVN repository files, or the working copies? – Mark B Oct 6 at 14:23
Never mind, I was being silly :) You're right, that does make a difference! – Mark B Oct 6 at 14:26
I meant the working copies. – Rich Seller Oct 6 at 14:32
was struggling to find the right words – Rich Seller Oct 6 at 14:32
vote up 0 vote down

Not that I'm aware of. This has been an issue since I began using it, on various Windows platforms. I'm sure if there was a way of improving it, it would, well, be improved.

For reference: A background process called TSVNCache.exe monitors filesystem changes and updates the icons. You could consider making the process run in "real-time" priority, but I wouldn't recommend it.

link|flag
vote up 0 vote down

You could disable TSVNCache.exe altogether. I decided I was willing to live without updated icons if it meant I could open and close Visual Studio orders of magnitude faster.

You could also lower the priority of TSVNCache, which is what my boss did with success. The main problem we were having was startup and shutdown times of Visual Studio, so he wrote a batch file that lowered the priority of the process and then started VS.

link|flag
That's not really what I'm after; to me, the overlay icons are one of the most useful features of TortoiseSVN, so disabling them completely isn't really an option - I just wanted them to be a bit 'snappier'. – Mark B Oct 6 at 15:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.