Question

I like ReSharper, but it is a total memory hog. It can quickly swell up and consume a half-gig of RAM without too much effort and bog down the IDE. Does anybody know of any way to configure it to be not as slow?

Was it helpful?

Solution

Turn off the on-the-fly compilation (which, unfortunately, is one of its best features)

OTHER TIPS

Not sure how big your solutions are, but I stopped using 4.5 for the same reasons I stopped using all previous versions, memory usage.

Code analysis and unit test support was the main reason I bought it, turning it off means the rationale for using it is gone.

Workstation has 4GB of memory, and I can easily kill it with ReSharper when running our end-to-end stack in debuggers.

The next release 4.5 is going to based around performance and memory footprint.

see Ilya Ryzhenkov's blog

Resharper 4.5 has been released From my experience it is less of a memory hog, but i still can run out of memory.

I had an issue where it was taking upwards of 10 minutes to load a solution of 100+ projects. Once loaded VS performance would be ok, though it would oddly flutter back and forth between ok and really bad.

The short answer: Eliminating Resharper warnings seems to improve overall VS/R# performance.

The biggest problem ultimately was that we had a number of files of binary data (encrypted stuff) being included as embedded resources, which happened to have .xml extensions. Resharper was trying really really hard to analyze those files. Eventually it'd get through but would generate 100K+ errors in the process. Changing the extension to one Resharper did not automatically analyze (.bin in this case) solved the problem.

We still have about 10 files which when they or a file they depend on is edited performance tanks for a while. These files are the partial parts of a single class definition where each file averages 3000 LOC. Yes, that's right, it's about a 30K line class. It also happens to be rather poor code for other reasons, many of which Resharper flags making the right hand gutter bar practically a solid orange line. Editing often causes Resharper to reanalyze the whole thing. While that analysis runs, performance is noticeably affected.

I've come to the conclusion that the less errors/warnings there are for R# to identify, the better it performs. My anecdotal evidence gathered while cleaning up/refactoring this project seems to support it.

A lot of folks complain of perf problems with Resharper. If you have even a few big ugly code files with lots of Resharper warnings, then a little time spent cleaning that code up might yield better performance overall. It has for us.

You can look how much memory ReSharper use.

ReSharper -> General -> Show managed memory usege in status bar.

If you are working on large source files, Resharper does get sluggish (I'm working on version 5.0 at the time of writing this).

You can view the memory usage of Resharper by clicking on Resharper options -> General -> Show memory use in status bar.

When I first did this, I noticed Resharper had clocked up hundreds of megabytes of memory usage! However, the next step worked for me in (temporarily) fixing the slugishness:

Right click the memory usage, and select "Collect garbage" - this seemed to fix the slugishness for me straight away.

Regarding memory hogging - I've found that my VS2008 memory footprint grows every time I close one solution and open another. This is true even if I close a solution and re-open that same solution.

The new ReSharper 4.5 works a lot better than the previous 4.x releases. I would recommend you try that one.

In previous versions I had the same problem, when 4.0 came out these problems have seemed to have gone away. Now with 4.1 i do not feel the huge slow down i used to have. My IDE does not freeze up anymore.

have you tried upgrading ?

Try the 4.5 beta. 4.1 was killing my 2GB dev machine, but it's back to running incredibly smoothly with the beta. Others have had the opposite experience, though, so YMMV.

Yes, 4.5 works much better. My understanding is that 4.5 was to address the performance issues.

Me and my colleagues are also having huge performance issues with ReSharper, just now my ReSharper took 1.1GB of memory. Visual Studio slows down specially when writing JavaScript, it's unbearable. You can turn of the on the fly compilation, but it's the best feature it has... ReSharper memory consumption

edit: Everybody in this thread seems to have ReShaprper 4.x, my version is 6.0.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top