<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Visual Studio &#8211; Other Things</title>
	<atom:link href="https://blog.adamzolo.com/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.adamzolo.com</link>
	<description>Blog about Things by Adam Zolotarev</description>
	<lastBuildDate>Sat, 20 Sep 2014 16:08:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>Improving Visual Studio Performance with RAM disk and Second SSD</title>
		<link>https://blog.adamzolo.com/improve-visual-studio-performance-ssd/</link>
					<comments>https://blog.adamzolo.com/improve-visual-studio-performance-ssd/#respond</comments>
		
		<dc:creator><![CDATA[Adam Zolo]]></dc:creator>
		<pubDate>Sat, 20 Sep 2014 16:08:22 +0000</pubDate>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">http://eazolo.com/blog/?p=91</guid>

					<description><![CDATA[One of the best way to improve Visual Studio performance is to replace your HDD with SSD. However, for various reasons it may not always an option. Here are a few other hardware-related suggestions that may help your Visual Studio experience: If you have enough RAM, create a RAM disk (I use freeware from SoftPerfect&#8230;<p><a class="more-link" href="https://blog.adamzolo.com/improve-visual-studio-performance-ssd/" title="Continue reading &#8216;Improving Visual Studio Performance with RAM disk and Second SSD&#8217;">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>One of the best way to improve Visual Studio performance is to replace your HDD with SSD. However, for various reasons it may not always an option. Here are a few other hardware-related suggestions that may help your Visual Studio experience:</p>
<ul>
<li>If you have enough RAM, create a RAM disk (I use freeware from <a href="http://www.softperfect.com" title="SoftPerfect" target="_blank">SoftPerfect </a>). Set your web.config to use it as a temp compilation directory:
<pre class="brush: plain; title: ; notranslate">
 &lt;compilation tempDirectory=&quot;R:\TempAspFolderOnRamDisk&quot;&gt;
</pre>
<p>While you are there, you can experiment with batch parameter. It is used to control whether the initial page request will continue to compile additional files in the same directory before completing the original request. I prefer to set it to false.
</li>
<li>
If you have an ability to add a second SSD, you may want to move all your source code to it. However, it may mean you have to change the configuration on your machine to make it work on a different drive/folder. To avoid this configuration headache, instead create a symbolic link between your original source code directory, and the new one on the SSD drive:</p>
<pre class="brush: plain; title: ; notranslate">
mklink /D &quot;C:\originalSourceCodeDirectory&quot; R:\DirectoryOnSSD
</pre>
<p>You have to delete or rename the originalSourceCodeDirectory prior to running mklink command.
</li>
<li> Move your bin/obj folders to RamDisk. Use symbolic links to avoid configuration problems. This did not seem to have any noticeable effect on my configuration, but your mileage may vary.
</li>
</li>
<li>Use some caching software like <a href="http://www.romexsoftware.com/en-us/index.html" title="PrimoCache" target="_blank">PrimoCache</a>. It allows to cache data either to your RAM or an additional SSD.
</li>
</ul>
<p>The most beneficial of these techniques for me was moving source code to SSD.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.adamzolo.com/improve-visual-studio-performance-ssd/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
