<?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"
	>
<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>
	<pubDate>Wed, 07 Jan 2009 02:55:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Keith</title>
		<link>http://boredzo.org/blog/archives/2006-05-09/how-to-create-a-ram-disk#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'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't actually tried this yet (so far my RAMdisk needs don'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'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't actually tried this yet (so far my RAMdisk needs don't exceed 1GB, let alone 2GB) ...</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>--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-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'm glad to report that my Mac Pro'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 'Active' and more 'Inactive' (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're willing to wait a bit.</description>
		<content:encoded><![CDATA[<p>I'm glad to report that my Mac Pro'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 'Active' and more 'Inactive' (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'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-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'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'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'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'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-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-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'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'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-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.181 seconds -->
