<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to create a RAM disk</title>
	<atom:link href="http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/feed" rel="self" type="application/rss+xml" />
	<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk</link>
	<description>The personal weblog of Peter Hosey.</description>
	<lastBuildDate>Tue, 17 Jan 2012 18:19:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Keith</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/comment-page-1#comment-201980</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Sat, 07 Jun 2008 22:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#comment-201980</guid>
		<description>Rollo, if you have performance issues due to disk but you have sufficient RAM to cache it all, one thing you can try is a script, either at startup of your application or running in the background, which reads everything into memory. I&#039;ve been known to do the following to force the caching of a large directory:

find /directory -type f -print0 &#124; xargs -0 -Ifile dd if=file of=/dev/null bs=4096

And, while I haven&#039;t actually tried this yet (so far my RAMdisk needs don&#039;t exceed 1GB, let alone 2GB) ...

Creating a RAID of RAMdisks should be possible. Just use level 0 or linear concatenation. With the latter you should be able to use any arbitrary number of RAMdisks of up to the 2GB size limit, to get the desired size.

--Keith</description>
		<content:encoded><![CDATA[<p>Rollo, if you have performance issues due to disk but you have sufficient RAM to cache it all, one thing you can try is a script, either at startup of your application or running in the background, which reads everything into memory. I&#8217;ve been known to do the following to force the caching of a large directory:</p>
<p>find /directory -type f -print0 | xargs -0 -Ifile dd if=file of=/dev/null bs=4096</p>
<p>And, while I haven&#8217;t actually tried this yet (so far my RAMdisk needs don&#8217;t exceed 1GB, let alone 2GB) &#8230;</p>
<p>Creating a RAID of RAMdisks should be possible. Just use level 0 or linear concatenation. With the latter you should be able to use any arbitrary number of RAMdisks of up to the 2GB size limit, to get the desired size.</p>
<p>&#8211;Keith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rollo Carpenter</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/comment-page-1#comment-195711</link>
		<dc:creator>Rollo Carpenter</dc:creator>
		<pubDate>Wed, 14 May 2008 19:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#comment-195711</guid>
		<description>I&#039;m glad to report that my Mac Pro&#039;s 28Gb are not wasted after all.  It takes a day or two, but after a while my databases (for the jabberwacky.com conversational AI) find their way into some &#039;Active&#039; and more &#039;Inactive&#039; (but still re-used) memory, such that the HD access is vastly reduced, which was the whole point.  So reports of RAM disks not being necessary are indeed true, as long as you&#039;re willing to wait a bit.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad to report that my Mac Pro&#8217;s 28Gb are not wasted after all.  It takes a day or two, but after a while my databases (for the jabberwacky.com conversational AI) find their way into some &#8216;Active&#8217; and more &#8216;Inactive&#8217; (but still re-used) memory, such that the HD access is vastly reduced, which was the whole point.  So reports of RAM disks not being necessary are indeed true, as long as you&#8217;re willing to wait a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hosey</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/comment-page-1#comment-195207</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Mon, 12 May 2008 15:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#comment-195207</guid>
		<description>Rollo: Nope. As I said above: Even on Leopard, the disk images system doesn&#039;t support RAM disks larger than 2 GiB. I know of no other way to effect a RAM disk than through the disk images system.

If I ever find one, I&#039;ll post about it and link to it from this post.</description>
		<content:encoded><![CDATA[<p>Rollo: Nope. As I said above: Even on Leopard, the disk images system doesn&#8217;t support RAM disks larger than 2 GiB. I know of no other way to effect a RAM disk than through the disk images system.</p>
<p>If I ever find one, I&#8217;ll post about it and link to it from this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rollo Carpenter</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/comment-page-1#comment-195194</link>
		<dc:creator>Rollo Carpenter</dc:creator>
		<pubDate>Mon, 12 May 2008 14:58:31 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#comment-195194</guid>
		<description>Like Dale back in Nov 07, I need a very large RAM disk, and have not found a way.  Have you come across anything?

Thanks

Rollo</description>
		<content:encoded><![CDATA[<p>Like Dale back in Nov 07, I need a very large RAM disk, and have not found a way.  Have you come across anything?</p>
<p>Thanks</p>
<p>Rollo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hosey</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/comment-page-1#comment-142354</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Wed, 21 Nov 2007 02:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#comment-142354</guid>
		<description>Dale philpott: Not using this method. The disk-images system is still 32-bit (even on Leopard), so it can&#039;t allocate 4, 8, or 16 GiB of RAM.</description>
		<content:encoded><![CDATA[<p>Dale philpott: Not using this method. The disk-images system is still 32-bit (even on Leopard), so it can&#8217;t allocate 4, 8, or 16 GiB of RAM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale philpott</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk/comment-page-1#comment-142332</link>
		<dc:creator>Dale philpott</dc:creator>
		<pubDate>Wed, 21 Nov 2007 00:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#comment-142332</guid>
		<description>Hi, Is there a way to create ram disks bigger than 2gb? if I try and create anything bigger then 2gb I get an error, hdiutil exited abnormally with status 1

I wanted to create a ram disk 4 8 or 16gb is size as I have 32gb ram

Thanks

Dale</description>
		<content:encoded><![CDATA[<p>Hi, Is there a way to create ram disks bigger than 2gb? if I try and create anything bigger then 2gb I get an error, hdiutil exited abnormally with status 1</p>
<p>I wanted to create a ram disk 4 8 or 16gb is size as I have 32gb ram</p>
<p>Thanks</p>
<p>Dale</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.222 seconds -->

