Can anything be done to improve performance in VS 2010?

2

I'm using VS 2010 since we're developing an app in .Net 4 and the performance is driving me crazy. It's mostly bad when I don't view the IDE for a while (such as when I get pulled away for a help desk call or come in in the morning).

I realize it's probably built in WPF which unloads its resources when unused, but the few minute delay while it loads everything back up is really annoying. I've also noticed some significant delays when opening files or compiling.

Rachel

Posted 2010-09-24T14:01:35.427

Reputation: 395

Out of curiosity, how much memory does your machine have? – Chris_K – 2010-09-24T14:55:27.050

2GB (15 chars..) – Rachel – 2010-09-24T15:09:57.997

3You need more :-) Visual Studio is probably getting swapped out when you do anything else. – Chris_K – 2010-09-24T16:07:55.477

Answers

1

I've experienced this problem with VS2008 also esp on virtual machines.

I believe it might be related to other services which are making use of the system while in a non-interactive state. For example virus scans and remote backups. It might not just be the VS system but some other system that is hogging the machine.

Hogan

Posted 2010-09-24T14:01:35.427

Reputation: 1 284

That is a possibility, we do have Symantec AntiVirus and I normally have a lot of other programs open at once on my machine. A lot are MS programs too and they all seem to freeze up at around the same time (VS, Visio, Outlook, Word, Enterprise Manager, etc) – Rachel – 2010-09-24T14:34:46.247

1

At the risk of sounding obvious, I'd suggest that you get better hardware. At the very least, I'd go for:

  • 8Gb RAM (16Gb preferred but 8Gb is the absolute minimum)
  • An SSD (yes, an SSD, not even a Raptor, and certainly not some 5200RPM drive)

Also, as the other poster mentioned, check that nothing is interfering with your project files.

Dmitri Nesteruk

Posted 2010-09-24T14:01:35.427

Reputation: 372