<?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>Too Far Afield &#187; Firefox</title>
	<atom:link href="http://blog.nachtarbeiter.net/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nachtarbeiter.net</link>
	<description></description>
	<lastBuildDate>Mon, 09 Jan 2012 05:41:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Reignite your Firefox [Update]</title>
		<link>http://blog.nachtarbeiter.net/2009/05/02/reignite-your-firefox/</link>
		<comments>http://blog.nachtarbeiter.net/2009/05/02/reignite-your-firefox/#comments</comments>
		<pubDate>Sat, 02 May 2009 11:05:42 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.nachtarbeiter.net/?p=754</guid>
		<description><![CDATA[I&#8217;ve just read a great tip on Firefox performance by Nick Anderson that I wanted to share with you: Newer versions of Firefox store all its data in so-called SQLite databases. SQLite is an ACID compliant relational database engine that consists of one flat file and is meant for storing data of single-user applications. The [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just read <a href="http://www.cmdln.org/2009/04/29/speed-up-your-firefox-ever-so-slightly/">a great tip on <cite>Firefox</cite> performance</a> by <a href="http://www.cmdln.org/">Nick Anderson</a> that I wanted to share with you: Newer versions of <cite>Firefox</cite> store all its data in so-called <a href="http://www.sqlite.org/"><cite>SQLite</cite></a> databases. <cite>SQLite</cite> is an <abbr title="Atomicity, Consistency, Isolation, Durability">ACID</abbr> compliant relational database engine that consists of one flat file and is meant for storing data of single-user applications. The problem with these <cite>SQLite</cite> database files is that they get cluttered over time. Luckily, there&#8217;s a statement to clean up an <cite>SQLite</cite> database: The <a href="http://www.sqlite.org/lang_vacuum.html"><code>VACUUM</code></a> statement. Just close all <cite>Firefox</cite> instances, <strong>backup your profile</strong> and run the following shell code:</p>
<ol class="code">
<li><code>for i in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $i VACUUM;done;</code></li>
</ol>
<p>Voilà. Depending on how long you use your profile, the performance increase will be really significant. And don&#8217;t think of filing a bug report. There are already <a href="https://bugzilla.mozilla.org/buglist.cgi?query_format=specific&#038;order=relevance+desc&#038;bug_status=__open__&#038;content=vacuum">plenty of it</a>.</p>
<p><strong>Update</strong>: <a href="http://blog.mozilla.com/oremj">Jeremy Orem</a> recently posted on <a href="http://blog.mozilla.com/oremj/2009/08/20/speedup-firefox-with-vacuum/">how you can clean your <cite>SQLite</cite> databases without shutting down the browser</a>:</p>
<ol>
<li>Select <cite>Error Console</cite> from the <cite>Tools</cite> menu.</li>
<li>Paste the following in the <cite>Code</cite> text-box:<br />
<code>Components.classes["@mozilla.org/browser/nav-history-service;1"].getService(Components.interfaces.nsPIPlacesDatabase).DBConnection.executeSimpleSQL("VACUUM")</code></li>
<li>Press Enter</li>
</ol>
<p>The user interface may freeze for a second while the vacuuming takes place.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nachtarbeiter.net/2009/05/02/reignite-your-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and dirty: Disable web cache in Firefox 3.5 (Shiretoko)</title>
		<link>http://blog.nachtarbeiter.net/2009/04/16/quick-and-dirty-disable-web-cache-in-firefox-35-shiretoko/</link>
		<comments>http://blog.nachtarbeiter.net/2009/04/16/quick-and-dirty-disable-web-cache-in-firefox-35-shiretoko/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 12:36:19 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Shiretoko]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.nachtarbeiter.net/?p=685</guid>
		<description><![CDATA[It&#8217;s sometimes necessary to disable your web browser&#8217;s cache, especially, if you&#8217;re doing web development. If you&#8217;re using a legacy Firefox build (e.g. Firefox prior to 3.5), you could use the excellent Web Developer Toolbar by Chris Pederik to do this (on the Disable menu, select Disable caching). But if you&#8217;re living on the cutting [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s sometimes necessary to disable your web browser&#8217;s cache, especially, if you&#8217;re doing web development. If you&#8217;re using a legacy <a href="http://getfirefox.com/">Firefox</a> build (e.g.  Firefox prior to 3.5), you could use the excellent <a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar</a> by <a href="http://chrispederick.com/">Chris Pederik</a> to do this (on the <cite>Disable</cite> menu, select <cite>Disable caching</cite>). But if you&#8217;re living on the cutting edge of things and use a nightly build or a beta build of the current Firefox 3.5 (code name: <cite>Shiretoko</cite>) like I do, you can&#8217;t use the extension, because it is not compatible with nightly builds or recent beta builds (as of this writing).</p>
<p>Thus, a quick and dirty approach: First, type <code>about:config</code> into the URL bar. You&#8217;ll see a warning, that advises you to be careful. Be careful. After carefully dismissing the warning, enter <code>network.http.use-cache</code> into the filter bar. You should now see the preference of the same name. Double click on the value to change its value. If the value is set to <code>false</code>, the cache is disabled. If the value is set to <code>true</code>, which is the default, the cache is enabled. Despite the name, caching of sites using the <code>https</code> protocol will be disabled, too. And don&#8217;t forget to re-enable the cache after you&#8217;re done with whatever you wanted to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nachtarbeiter.net/2009/04/16/quick-and-dirty-disable-web-cache-in-firefox-35-shiretoko/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

