<?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>Andre Noel &#187; sqlite</title>
	<atom:link href="http://en.andrenoel.com.br/tag/sqlite/feed/" rel="self" type="application/rss+xml" />
	<link>http://en.andrenoel.com.br</link>
	<description></description>
	<lastBuildDate>Wed, 07 Dec 2011 15:52:29 +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>Vacuum your Firefox databases for better performance</title>
		<link>http://en.andrenoel.com.br/2009/07/27/vacuum-your-firefox-databases-for-better-performance/</link>
		<comments>http://en.andrenoel.com.br/2009/07/27/vacuum-your-firefox-databases-for-better-performance/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 05:14:28 +0000</pubDate>
		<dc:creator>Andre Noel</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://en.andrenoel.com.br/?p=74</guid>
		<description><![CDATA[A few days ago I marked an article to read later and I finally read it. It&#8217;s about how to Vacuum your Firefox databases for better performance. According the post, &#8220;since Firefox 3.0, bookmarks, history and most storage is kept in SQLite databases&#8221;. So, optimize this databases is very healthy to Firefox. And it&#8217;s very]]></description>
			<content:encoded><![CDATA[<p>A few days ago I marked an article to read later and I finally read it. It&#8217;s about how to <a href="http://mozillalinks.org/wp/2009/07/vacuum-your-firefox-databases-for-better-performance/">Vacuum your Firefox databases for better performance</a>.</p>
<p>According the post, &#8220;since Firefox 3.0, bookmarks, history and most storage is kept in SQLite databases&#8221;. So, optimize this databases is very healthy to Firefox.</p>
<p><strong>And it&#8217;s very easy to do.</strong> On Ubuntu (I did on 9.04) install the sqlite3 package. Open the terminal and type:</p>
<p><code>sudo aptitude install sqlite3</code></p>
<p>After, still in terminal, access your Firefox profile folder:</p>
<p><code>cd ~/.mozilla/firefox/something_weird.default</code></p>
<p>In my computer, this <em>something_weird.default</em> is <em>73cm0ffy.default</em>.</p>
<p>You can see many .sqlite files inside this folder, these are the database to optimize. To do this, close Firefox (only after read or copy this post <img src='http://en.andrenoel.com.br/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ), then type, for each file:</p>
<p><code>sqlite3 file_name.sqlite vacuum</code></p>
<p><strong>And there&#8217;s a way to vacuum all the files at once?</strong> Sure. You&#8217;re using a Linux terminal! To do this, type:</p>
<p><code>for i in *.sqlite; do sqlite3 $i vacuum; done</code></p>
<p>And done.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.andrenoel.com.br/2009/07/27/vacuum-your-firefox-databases-for-better-performance/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

