<?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: Startup, part 1</title>
	<atom:link href="http://blog.vlad1.com/2009/07/27/startup-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vlad1.com/2009/07/27/startup-part-1/</link>
	<description>Words</description>
	<lastBuildDate>Mon, 15 Mar 2010 23:28:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: vladimir</title>
		<link>http://blog.vlad1.com/2009/07/27/startup-part-1/comment-page-1/#comment-3600</link>
		<dc:creator>vladimir</dc:creator>
		<pubDate>Wed, 29 Jul 2009 01:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vlad1.com/?p=143#comment-3600</guid>
		<description>Sweet!  It turns out there is a sysinternals tool called &lt;a href=&quot;http://technet.microsoft.com/en-us/sysinternals/bb897561.aspx&quot; rel=&quot;nofollow&quot;&gt;CacheSet&lt;/a&gt; that seems to do exactly the same thing.  My google skills failed; shaver found this the other day.  However, I like yours better since it&#039;ll work on the command line.  Thanks!</description>
		<content:encoded><![CDATA[<p>Sweet!  It turns out there is a sysinternals tool called <a href="http://technet.microsoft.com/en-us/sysinternals/bb897561.aspx" rel="nofollow">CacheSet</a> that seems to do exactly the same thing.  My google skills failed; shaver found this the other day.  However, I like yours better since it&#8217;ll work on the command line.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Ross</title>
		<link>http://blog.vlad1.com/2009/07/27/startup-part-1/comment-page-1/#comment-3599</link>
		<dc:creator>James Ross</dc:creator>
		<pubDate>Wed, 29 Jul 2009 00:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vlad1.com/?p=143#comment-3599</guid>
		<description>I took your implied challenge, and I made a 48KB no-dependency binary to empty Windows&#039; file cache. It uses a lovely undocumented API, so I blogged about it with binary and source links for posterity: http://twpol.dyndns.org/weblog/2009/07/29/01. :)</description>
		<content:encoded><![CDATA[<p>I took your implied challenge, and I made a 48KB no-dependency binary to empty Windows&#8217; file cache. It uses a lovely undocumented API, so I blogged about it with binary and source links for posterity: <a href="http://twpol.dyndns.org/weblog/2009/07/29/01" rel="nofollow">http://twpol.dyndns.org/weblog/2009/07/29/01</a>. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tar</title>
		<link>http://blog.vlad1.com/2009/07/27/startup-part-1/comment-page-1/#comment-3590</link>
		<dc:creator>Tar</dc:creator>
		<pubDate>Tue, 28 Jul 2009 02:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vlad1.com/?p=143#comment-3590</guid>
		<description>On Linux:
To free pagecache:
echo 1 &gt; /proc/sys/vm/drop_caches

To free dentries and inodes:
echo 2 &gt; /proc/sys/vm/drop_caches

To free pagecache, dentries and inodes:
echo 3 &gt; /proc/sys/vm/drop_caches</description>
		<content:encoded><![CDATA[<p>On Linux:<br />
To free pagecache:<br />
echo 1 &gt; /proc/sys/vm/drop_caches</p>
<p>To free dentries and inodes:<br />
echo 2 &gt; /proc/sys/vm/drop_caches</p>
<p>To free pagecache, dentries and inodes:<br />
echo 3 &gt; /proc/sys/vm/drop_caches</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skierpage</title>
		<link>http://blog.vlad1.com/2009/07/27/startup-part-1/comment-page-1/#comment-3589</link>
		<dc:creator>skierpage</dc:creator>
		<pubDate>Mon, 27 Jul 2009 22:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vlad1.com/?p=143#comment-3589</guid>
		<description>There was talk of using UTF8 internally,  https://wiki.mozilla.org/Mozilla_2/Work_List mentions 
&#039;&quot;Strings&quot; -- sharing strings with JS or moving to STL, moving to UTF8, sanifying the existing string classes - bsmedberg &#039;
and Mr. O&#039;Callahan in http://weblogs.mozillazine.org/roc/archives/2008/01/string_theory.html wrote 
&quot;I think it would be very interesting to try just having a single string type that was UTF-8 ... [lots of details]&quot;

It never became a bug, just an area for analysis.

As Gecko goes to smaller increments (1.9.1 -&gt; 1.9.2), does Mozilla2 get further away ? :-)</description>
		<content:encoded><![CDATA[<p>There was talk of using UTF8 internally,  <a href="https://wiki.mozilla.org/Mozilla_2/Work_List" rel="nofollow">https://wiki.mozilla.org/Mozilla_2/Work_List</a> mentions<br />
&#8216;&#8221;Strings&#8221; &#8212; sharing strings with JS or moving to STL, moving to UTF8, sanifying the existing string classes &#8211; bsmedberg &#8216;<br />
and Mr. O&#8217;Callahan in <a href="http://weblogs.mozillazine.org/roc/archives/2008/01/string_theory.html" rel="nofollow">http://weblogs.mozillazine.org/roc/archives/2008/01/string_theory.html</a> wrote<br />
&#8220;I think it would be very interesting to try just having a single string type that was UTF-8 &#8230; [lots of details]&#8221;</p>
<p>It never became a bug, just an area for analysis.</p>
<p>As Gecko goes to smaller increments (1.9.1 -&gt; 1.9.2), does Mozilla2 get further away ? :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
