views:

1651

answers:

3

I've looked for some other articles on this problem and even tried some of the ideas in this thread; however, nothing has solved the issue yet. So, on to the issue.

Something happens when working in Visual Studio (usually C#) that causes the IDE to become a bit wonky when saving a file. I will be working along just fine for a while then at some point I notice that every time I save a file (Ctrl+S) it becomes very slow.

The behavior I notice is this; I hit save in some fashion (Ctrl+S, menu, etc...) and in the status bar I see the word Searching show up. It looks like it is scanning through all of the loaded namespaces for something, although I have no idea for what or why it is doing so. It causes a real hiccup in workflow since typically I will hit Ctrl+S often and keep typing.

I have been unable to track down what exactly causes this to start happening. It has happened in multiple project types (web, WPF, console).

Has anyone seen this behavior or have any suggestions?

+1  A: 

I've had a problem similar to this happen before. Are you using an plugins like ReSharper or DevExpress?

Adam Driscoll
I do have a DevExpress installed. I hadn't realized it was still there as it does not show up i nmy add-ins list for some reason.
palehorse
I have not had the problem since uninstalling DevExpress. It would normally have occurred again by this time. Thanks!
palehorse
A: 

Did you disable intellsense? We've seen that bog down all sorts of things in Visual Studio.

Mark
I have not, one of the reasons I use VisualStudio is the Intellisense.
palehorse
I would at least try it and see if that sovles your problem. Living with intellisense is like playing with the devil sometimes :-). If your problem goes away, at least you've identified it. There are good alternatives available (such as Visual Assist).
Mark
I just tried removing DeveExpress. If my problem does not go away, I will try turning Intellisense off, Thanks :)
palehorse
A: 

Hello,

I had similar problem with Visual Studio 2005.

I read through several posts (sorry I could not post the links because of: sorry, new users can only post a maximum of one hyperlink).

I ran FileMon and discovered that on save the IDE keeps querying C:\Documents and Settings\iguigova\Local Settings\Application Data\Microsoft\WebsiteCache

Then I came across this post: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=347228

Now I am trying to clear the directory. It was FULL. I plan to set a batch file to delete its contents daily...

Good luck!