Tuesday, December 20, 2011

SharePoint Check Memory Leaks in Custom Solution Development

In any SharePoint custom solution development, it is very important to make sure there are no memory leaks in the code. If there are any memory leaks the performance will be down and might face unnecessary issues at run-time.
While developing the code every developer ensures that SPSite and SPWeb objects are disposed either way (using clause or dispose method). But in a bigger solutions there are always chances for missing them in manual verification.

How good if there is a tool available to verify whether our solution (code) has any memory leaks, which can be checked in seconds of time. Yes there is a tool for the same. You can download it from SPDisposeChecker.

Even you can make this Tool as part of your visual studio Tools. Follow the simple 3 steps.

No comments:

Post a Comment