<?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: Vacuum your Firefox databases for better performance</title>
	<atom:link href="http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/</link>
	<description>Your source for Mozilla news, tips, reviews, and more.</description>
	<lastBuildDate>Sat, 24 Mar 2012 19:31:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Ferdinand</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-80258</link>
		<dc:creator>Ferdinand</dc:creator>
		<pubDate>Mon, 02 May 2011 20:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-80258</guid>
		<description>It is no longer needed as FF4 does it automatically
See Bug 512854
https://bugzilla.mozilla.org/show_bug.cgi?id=512854</description>
		<content:encoded><![CDATA[<p>It is no longer needed as FF4 does it automatically<br />
See Bug 512854<br />
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512854" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=512854</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guam</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-80255</link>
		<dc:creator>Guam</dc:creator>
		<pubDate>Sun, 01 May 2011 20:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-80255</guid>
		<description>Does this still work on FF4?</description>
		<content:encoded><![CDATA[<p>Does this still work on FF4?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rmpbklyn</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-80238</link>
		<dc:creator>rmpbklyn</dc:creator>
		<pubDate>Tue, 26 Apr 2011 14:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-80238</guid>
		<description>do note, vacuum AFTER clearing all the cache, otherwise YES you won&#039;t see a difference.  
also if you learn SQL, you can remove items by dates, but the date are in system offset.   eg cookies, are all or thing but the database has a date when it was stored. so if you want to keep recently and remove others, then try the SQL query method</description>
		<content:encoded><![CDATA[<p>do note, vacuum AFTER clearing all the cache, otherwise YES you won&#8217;t see a difference.<br />
also if you learn SQL, you can remove items by dates, but the date are in system offset.   eg cookies, are all or thing but the database has a date when it was stored. so if you want to keep recently and remove others, then try the SQL query method</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eduardo</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-79393</link>
		<dc:creator>Eduardo</dc:creator>
		<pubDate>Mon, 25 Oct 2010 23:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-79393</guid>
		<description>wow, my places.sqlite went from 114 mb to 47 mb! thanks for the tip!</description>
		<content:encoded><![CDATA[<p>wow, my places.sqlite went from 114 mb to 47 mb! thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dj</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-78118</link>
		<dc:creator>dj</dc:creator>
		<pubDate>Wed, 07 Apr 2010 03:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-78118</guid>
		<description>Great!
Places decreased by 2/3rd.
3.6.2 and 3.6.3 are having major cpu usage issues on Windows. Vacuum was one of the suggestions. FF is better on Linux. 

I&#039;m putting this into cron on Linux and have it execute in the background on machine startup.

Thanks.</description>
		<content:encoded><![CDATA[<p>Great!<br />
Places decreased by 2/3rd.<br />
3.6.2 and 3.6.3 are having major cpu usage issues on Windows. Vacuum was one of the suggestions. FF is better on Linux. </p>
<p>I&#8217;m putting this into cron on Linux and have it execute in the background on machine startup.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 3ED</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77866</link>
		<dc:creator>3ED</dc:creator>
		<pubDate>Mon, 08 Mar 2010 19:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77866</guid>
		<description>#!/bin/bash
# http://pastebin.pl/19714

if [ &quot;`ps xo cmd=&#124;grep -c &quot;^firefox$&quot;`&quot; != &quot;0&quot; ]
  then printf &quot;First close firefox..\n&quot;; exit 1
fi

if ! sqlcmd=&quot;`which sqlite3 2&gt; /dev/null`&quot;
  then printf &quot;sqlite3: command not found..\n&quot;; exit 1
fi

find ~/.mozilla/ -type f -name &quot;*.sqlite&quot; -exec $sqlcmd {} VACUUM \;
find ~/.mozilla/ -type f -name &quot;*.sqlite&quot; -exec $sqlcmd {} REINDEX \;</description>
		<content:encoded><![CDATA[<p>#!/bin/bash<br />
# <a href="http://pastebin.pl/19714" rel="nofollow">http://pastebin.pl/19714</a></p>
<p>if [ "`ps xo cmd=|grep -c "^firefox$"`" != "0" ]<br />
  then printf &#8220;First close firefox..\n&#8221;; exit 1<br />
fi</p>
<p>if ! sqlcmd=&#8221;`which sqlite3 2&gt; /dev/null`&#8221;<br />
  then printf &#8220;sqlite3: command not found..\n&#8221;; exit 1<br />
fi</p>
<p>find ~/.mozilla/ -type f -name &#8220;*.sqlite&#8221; -exec $sqlcmd {} VACUUM \;<br />
find ~/.mozilla/ -type f -name &#8220;*.sqlite&#8221; -exec $sqlcmd {} REINDEX \;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Blow</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77705</link>
		<dc:creator>Joe Blow</dc:creator>
		<pubDate>Tue, 16 Feb 2010 14:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77705</guid>
		<description>I just delete the whole damn thing. I don&#039;t need the URL history or the stupid &quot;awesome&quot; bar. I can type in most url&#039;s myself, and those which are too long can simply be bookmarked.</description>
		<content:encoded><![CDATA[<p>I just delete the whole damn thing. I don&#8217;t need the URL history or the stupid &#8220;awesome&#8221; bar. I can type in most url&#8217;s myself, and those which are too long can simply be bookmarked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anti-Google</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77325</link>
		<dc:creator>Anti-Google</dc:creator>
		<pubDate>Mon, 11 Jan 2010 02:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77325</guid>
		<description>Gee, Maybe cuz FF2 was alot better than FF3.
.dat &amp; .rdf files don&#039;t need a server either.
&quot;least amount of memory&quot;, Yeah Firefox 3 doesnt hog memory [sic:)].
&quot;if you regularly use the database&quot;, The browser regularly uses the database. It&#039;s not something you have control over if you use Firefox 3.
&quot;Sqlite has great performance&quot;, https://bugzilla.mozilla.org/show_bug.cgi?id=525753, https://bugzilla.mozilla.org/show_bug.cgi?id=515538</description>
		<content:encoded><![CDATA[<p>Gee, Maybe cuz FF2 was alot better than FF3.<br />
.dat &amp; .rdf files don&#8217;t need a server either.<br />
&#8220;least amount of memory&#8221;, Yeah Firefox 3 doesnt hog memory [sic:)].<br />
&#8220;if you regularly use the database&#8221;, The browser regularly uses the database. It&#8217;s not something you have control over if you use Firefox 3.<br />
&#8220;Sqlite has great performance&#8221;, <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=525753" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=525753</a>, <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515538" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=515538</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnilG</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77243</link>
		<dc:creator>AnilG</dc:creator>
		<pubDate>Tue, 05 Jan 2010 03:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77243</guid>
		<description>Wow! Yeah!

I vacuumed the lot in particular reducing places from 10MB to 5MB and I think another big one was urlclassifier down from 6MB to 2MB.

Start-up went from many seconds (10 - 20) to about 2 seconds!

That&#039;s what I&#039;m talking about!</description>
		<content:encoded><![CDATA[<p>Wow! Yeah!</p>
<p>I vacuumed the lot in particular reducing places from 10MB to 5MB and I think another big one was urlclassifier down from 6MB to 2MB.</p>
<p>Start-up went from many seconds (10 &#8211; 20) to about 2 seconds!</p>
<p>That&#8217;s what I&#8217;m talking about!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brendan</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77136</link>
		<dc:creator>Brendan</dc:creator>
		<pubDate>Thu, 24 Dec 2009 11:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77136</guid>
		<description>My results (openSuse 11.2, Firefox 3.5.6)

before:
         7168 2009-07-26 23:53 content-prefs.sqlite
         2048 2009-12-24 01:58 cookies.sqlite
       16384 2009-12-22 13:58 downloads.sqlite
         4096 2009-12-24 01:58 formhistory.sqlite
         2048 2009-12-23 18:07 permissions.sqlite
  7860224 2009-12-24 11:30 places.sqlite
         2048 2009-12-03 20:49 search.sqlite
       11264 2009-07-18 12:10 signons.sqlite
53555200 2009-12-24 11:30 urlclassifier3.sqlite

after:
         7168 2009-12-24 11:32 content-prefs.sqlite
         2048 2009-12-24 11:32 cookies.sqlite
         2048 2009-12-24 11:32 downloads.sqlite
         4096 2009-12-24 11:32 formhistory.sqlite
         2048 2009-12-24 11:32 permissions.sqlite
  7278592 2009-12-24 11:32 places.sqlite
         2048 2009-12-24 11:32 search.sqlite
       11264 2009-12-24 11:32 signons.sqlite
24039424 2009-12-24 11:33 urlclassifier3.sqlite

No exact times, but startup now takes less than half the previous time.</description>
		<content:encoded><![CDATA[<p>My results (openSuse 11.2, Firefox 3.5.6)</p>
<p>before:<br />
         7168 2009-07-26 23:53 content-prefs.sqlite<br />
         2048 2009-12-24 01:58 cookies.sqlite<br />
       16384 2009-12-22 13:58 downloads.sqlite<br />
         4096 2009-12-24 01:58 formhistory.sqlite<br />
         2048 2009-12-23 18:07 permissions.sqlite<br />
  7860224 2009-12-24 11:30 places.sqlite<br />
         2048 2009-12-03 20:49 search.sqlite<br />
       11264 2009-07-18 12:10 signons.sqlite<br />
53555200 2009-12-24 11:30 urlclassifier3.sqlite</p>
<p>after:<br />
         7168 2009-12-24 11:32 content-prefs.sqlite<br />
         2048 2009-12-24 11:32 cookies.sqlite<br />
         2048 2009-12-24 11:32 downloads.sqlite<br />
         4096 2009-12-24 11:32 formhistory.sqlite<br />
         2048 2009-12-24 11:32 permissions.sqlite<br />
  7278592 2009-12-24 11:32 places.sqlite<br />
         2048 2009-12-24 11:32 search.sqlite<br />
       11264 2009-12-24 11:32 signons.sqlite<br />
24039424 2009-12-24 11:33 urlclassifier3.sqlite</p>
<p>No exact times, but startup now takes less than half the previous time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LK</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77112</link>
		<dc:creator>LK</dc:creator>
		<pubDate>Sat, 19 Dec 2009 19:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77112</guid>
		<description>My places.sqlite went from 25MB-&gt;17MB and urlclassifier3.sqlite from 55MB-&gt;25MB. Firefox startup changed from 30 seconds to 5. Excellent!
Thanks for this tip!</description>
		<content:encoded><![CDATA[<p>My places.sqlite went from 25MB-&gt;17MB and urlclassifier3.sqlite from 55MB-&gt;25MB. Firefox startup changed from 30 seconds to 5. Excellent!<br />
Thanks for this tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kev</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77050</link>
		<dc:creator>Kev</dc:creator>
		<pubDate>Thu, 17 Dec 2009 11:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77050</guid>
		<description>Hi
thanks ferdinand, i could not find the exact file &quot;sqlite3&quot;, the page had heaps
of files all called &quot;sglite-3- something&quot; and I didn&#039;t know enough about coding
to know which actual name and file type i was supposed to use,
the info was great, i just created a new profile instead.
thank you ferdinand for the offer, i downloadd the plugin.
cheers Kev</description>
		<content:encoded><![CDATA[<p>Hi<br />
thanks ferdinand, i could not find the exact file &#8220;sqlite3&#8243;, the page had heaps<br />
of files all called &#8220;sglite-3- something&#8221; and I didn&#8217;t know enough about coding<br />
to know which actual name and file type i was supposed to use,<br />
the info was great, i just created a new profile instead.<br />
thank you ferdinand for the offer, i downloadd the plugin.<br />
cheers Kev</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ferdinand</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77049</link>
		<dc:creator>Ferdinand</dc:creator>
		<pubDate>Thu, 17 Dec 2009 07:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77049</guid>
		<description>If you can&#039;t find out which one to download maybe you should try the extension:
https://addons.mozilla.org/en-US/firefox/addon/13878</description>
		<content:encoded><![CDATA[<p>If you can&#8217;t find out which one to download maybe you should try the extension:<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/13878" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/13878</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kev</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-77044</link>
		<dc:creator>Kev</dc:creator>
		<pubDate>Thu, 17 Dec 2009 01:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-77044</guid>
		<description>Hi 
can you tell me what the exact name of the file is for sql3 as there is not a file called exactly ( sqlite3 ) and not knowing code i dont want to make a mistake, also which section is in?

Is it - Source Code  or Precompiled Binaries For Windows?

sqlite-amalgamation-3_6_21.zip
(1.03 MiB)	

sqlite-amalgamation-3.6.21.tar.gz
(1.34 MiB)	

sqlite-3_6_21-tea.tar.gz
(1.12 MiB)	

sqlite-3.6.21.tar.gz
(2.83 MiB)

or these ones below?

 sqlite-3_6_21.zip
(251.17 KiB)

tclsqlite-3_6_21.zip
(318.27 KiB)	

sqlitedll-3_6_21.zip
(246.81 KiB)		

sqlite3_analyzer-3.6.1.zip
(508.70 KiB)	

Sorry but i am not sure which one to grab as my firefox is hanging on average 30 to 40 times a day, for about 4 to 6 minutes each time while im browsing each day.
thanks Kev</description>
		<content:encoded><![CDATA[<p>Hi<br />
can you tell me what the exact name of the file is for sql3 as there is not a file called exactly ( sqlite3 ) and not knowing code i dont want to make a mistake, also which section is in?</p>
<p>Is it &#8211; Source Code  or Precompiled Binaries For Windows?</p>
<p>sqlite-amalgamation-3_6_21.zip<br />
(1.03 MiB)	</p>
<p>sqlite-amalgamation-3.6.21.tar.gz<br />
(1.34 MiB)	</p>
<p>sqlite-3_6_21-tea.tar.gz<br />
(1.12 MiB)	</p>
<p>sqlite-3.6.21.tar.gz<br />
(2.83 MiB)</p>
<p>or these ones below?</p>
<p> sqlite-3_6_21.zip<br />
(251.17 KiB)</p>
<p>tclsqlite-3_6_21.zip<br />
(318.27 KiB)	</p>
<p>sqlitedll-3_6_21.zip<br />
(246.81 KiB)		</p>
<p>sqlite3_analyzer-3.6.1.zip<br />
(508.70 KiB)	</p>
<p>Sorry but i am not sure which one to grab as my firefox is hanging on average 30 to 40 times a day, for about 4 to 6 minutes each time while im browsing each day.<br />
thanks Kev</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-76032</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 29 Oct 2009 21:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-76032</guid>
		<description>Had a bit of trouble starting FF after vacuuming.  Thanks to Trx64 for the script.  I added a few reporting stats.  Here are my results for my default profile vacuuming.  The numbers come from &quot;du -sk *.sqlite&quot;.  The places didn&#039;t clean up much.  Most of the cleanup came from urlclassifier2.

firefox_clean.ksh: Profile: t3tdc82p.default, disk usage before: 30805
         7 content-prefs.sqlite
       302 cookies.sqlite
        11 downloads.sqlite
        98 formhistory.sqlite
         2 permissions.sqlite
     13312 places.sqlite
         2 search.sqlite
        11 signons.sqlite
      6974 urlclassifier2.sqlite
         6 webappsstore.sqlite
firefox_clean.ksh: Profile: t3tdc82p.default, disk usage after:  25234
         7 content-prefs.sqlite
       169 cookies.sqlite
         8 downloads.sqlite
        51 formhistory.sqlite
         2 permissions.sqlite
     12740 places.sqlite
         2 search.sqlite
        11 signons.sqlite
      2181 urlclassifier2.sqlite
         6 webappsstore.sqlite
firefox_clean.ksh: Profile: t3tdc82p.default, vacuumed: 5571
firefox_clean.ksh: Done: Vacuum Firefox sqlite databases

My environment has two profiles, each with a dozen addons and 10 or 18 windows, including liveHTTPheaders which may have been the cause of the startup reluctance.  Another complication is that I just downloaded Firefox 3.5.4 today.  When I restarted my non-default profile, it actually said &quot;Well, this is embarrasing&quot; and gave some instructions on how to work around the startup issue.  I just clicked &quot;restore previous session&quot; and it worked fine.  But that all made it hard to measure startup time.  Shutdown time seems quicker, though.</description>
		<content:encoded><![CDATA[<p>Had a bit of trouble starting FF after vacuuming.  Thanks to Trx64 for the script.  I added a few reporting stats.  Here are my results for my default profile vacuuming.  The numbers come from &#8220;du -sk *.sqlite&#8221;.  The places didn&#8217;t clean up much.  Most of the cleanup came from urlclassifier2.</p>
<p>firefox_clean.ksh: Profile: t3tdc82p.default, disk usage before: 30805<br />
         7 content-prefs.sqlite<br />
       302 cookies.sqlite<br />
        11 downloads.sqlite<br />
        98 formhistory.sqlite<br />
         2 permissions.sqlite<br />
     13312 places.sqlite<br />
         2 search.sqlite<br />
        11 signons.sqlite<br />
      6974 urlclassifier2.sqlite<br />
         6 webappsstore.sqlite<br />
firefox_clean.ksh: Profile: t3tdc82p.default, disk usage after:  25234<br />
         7 content-prefs.sqlite<br />
       169 cookies.sqlite<br />
         8 downloads.sqlite<br />
        51 formhistory.sqlite<br />
         2 permissions.sqlite<br />
     12740 places.sqlite<br />
         2 search.sqlite<br />
        11 signons.sqlite<br />
      2181 urlclassifier2.sqlite<br />
         6 webappsstore.sqlite<br />
firefox_clean.ksh: Profile: t3tdc82p.default, vacuumed: 5571<br />
firefox_clean.ksh: Done: Vacuum Firefox sqlite databases</p>
<p>My environment has two profiles, each with a dozen addons and 10 or 18 windows, including liveHTTPheaders which may have been the cause of the startup reluctance.  Another complication is that I just downloaded Firefox 3.5.4 today.  When I restarted my non-default profile, it actually said &#8220;Well, this is embarrasing&#8221; and gave some instructions on how to work around the startup issue.  I just clicked &#8220;restore previous session&#8221; and it worked fine.  But that all made it hard to measure startup time.  Shutdown time seems quicker, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NullHead</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-76002</link>
		<dc:creator>NullHead</dc:creator>
		<pubDate>Tue, 27 Oct 2009 05:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-76002</guid>
		<description>Mine went from 11mb to 10 mb ... not a huge difference. but I recently cleaned out my bookmarks and ran ccleaner.</description>
		<content:encoded><![CDATA[<p>Mine went from 11mb to 10 mb &#8230; not a huge difference. but I recently cleaned out my bookmarks and ran ccleaner.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DacoTaco</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-75630</link>
		<dc:creator>DacoTaco</dc:creator>
		<pubDate>Mon, 05 Oct 2009 17:58:33 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-75630</guid>
		<description>for windows this should be all you need to do (also,  sqlite3.exe should be in C:\) :
for /f %a in (&#039;dir /s /b C:\*.sqlite&#039;) do (C:\sqlite3 %a vacuum)</description>
		<content:encoded><![CDATA[<p>for windows this should be all you need to do (also,  sqlite3.exe should be in C:\) :<br />
for /f %a in (&#8216;dir /s /b C:\*.sqlite&#8217;) do (C:\sqlite3 %a vacuum)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karel</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-75259</link>
		<dc:creator>karel</dc:creator>
		<pubDate>Sun, 13 Sep 2009 19:58:22 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-75259</guid>
		<description>Briljant! I came across this subject after experiencing problems with FF 3.5.3.

It was slowing down and became none responsive.
places.sqlite was 60 Mb after VACUUM only 500 Kb.

If you use Total Commander you can semi automate the VACUUM proces
TC--&gt;Start--&gt;Change Start Menu--&gt;Add Item--&gt;New Title for menu entry--&gt; FF sqlite optimizer
Command: X:\Pathto\Firefox\Data\profile\sqlite3.exe
Parameters: %N VACUUM
Click OK.
Close FF
Now navigate to a sqlite file go to Start and select &quot;FF sqlite optimizer&quot;!
See how your file size reduces!!!!</description>
		<content:encoded><![CDATA[<p>Briljant! I came across this subject after experiencing problems with FF 3.5.3.</p>
<p>It was slowing down and became none responsive.<br />
places.sqlite was 60 Mb after VACUUM only 500 Kb.</p>
<p>If you use Total Commander you can semi automate the VACUUM proces<br />
TC&#8211;&gt;Start&#8211;&gt;Change Start Menu&#8211;&gt;Add Item&#8211;&gt;New Title for menu entry&#8211;&gt; FF sqlite optimizer<br />
Command: X:\Pathto\Firefox\Data\profile\sqlite3.exe<br />
Parameters: %N VACUUM<br />
Click OK.<br />
Close FF<br />
Now navigate to a sqlite file go to Start and select &#8220;FF sqlite optimizer&#8221;!<br />
See how your file size reduces!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Studio 13</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-75224</link>
		<dc:creator>Web Studio 13</dc:creator>
		<pubDate>Thu, 10 Sep 2009 12:36:35 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-75224</guid>
		<description>&lt;strong&gt;7 Things to Do to Make Your Mozilla Firefox Lightning Fast...&lt;/strong&gt;

Since I updated my Firefox to the latest version (3.5.3), I&#8217;ve always wanted to do some housekeeping so to make my browser run faster.Â  Finally, I got it done today.Â  To my surprise, the tweaking really does wonders for me.Â  Now my Firefox is ......</description>
		<content:encoded><![CDATA[<p><strong>7 Things to Do to Make Your Mozilla Firefox Lightning Fast&#8230;</strong></p>
<p>Since I updated my Firefox to the latest version (3.5.3), I&#8217;ve always wanted to do some housekeeping so to make my browser run faster.Â  Finally, I got it done today.Â  To my surprise, the tweaking really does wonders for me.Â  Now my Firefox is &#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bandi</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-75050</link>
		<dc:creator>bandi</dc:creator>
		<pubDate>Sun, 23 Aug 2009 21:17:16 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-75050</guid>
		<description>not an insane size improvement, but serious speed boost!</description>
		<content:encoded><![CDATA[<p>not an insane size improvement, but serious speed boost!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Double T</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-75005</link>
		<dc:creator>Double T</dc:creator>
		<pubDate>Fri, 21 Aug 2009 22:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-75005</guid>
		<description>so a combo of &quot;Defraggler&quot; and the use of Ccleaner doesn&#039;t do the trick?
hey..no wait..the Ccleaner does all that crap in a flash..sry, bugger me. otherwise TWEAK ya Firfox, ya brainless twats!</description>
		<content:encoded><![CDATA[<p>so a combo of &#8220;Defraggler&#8221; and the use of Ccleaner doesn&#8217;t do the trick?<br />
hey..no wait..the Ccleaner does all that crap in a flash..sry, bugger me. otherwise TWEAK ya Firfox, ya brainless twats!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ferdinand</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-73283</link>
		<dc:creator>Ferdinand</dc:creator>
		<pubDate>Tue, 04 Aug 2009 06:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-73283</guid>
		<description>You can find descriptions of Firefox profile files here: http://kb.mozillazine.org/Profile_folder_-_Firefox#Files
[q]Cleaning out the temp folders did NOTHING.[/q]
That problem has been fixed with Firefox 3.5.1 so you shouldn&#039;t need to clean out your temp folders. And you can be sure that Mozilla is working on a way to automatically vacuum.</description>
		<content:encoded><![CDATA[<p>You can find descriptions of Firefox profile files here: <a href="http://kb.mozillazine.org/Profile_folder_-_Firefox#Files" rel="nofollow">http://kb.mozillazine.org/Profile_folder_-_Firefox#Files</a><br />
[q]Cleaning out the temp folders did NOTHING.[/q]<br />
That problem has been fixed with Firefox 3.5.1 so you shouldn&#8217;t need to clean out your temp folders. And you can be sure that Mozilla is working on a way to automatically vacuum.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Jeffers VE3GYV</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-73197</link>
		<dc:creator>John Jeffers VE3GYV</dc:creator>
		<pubDate>Mon, 03 Aug 2009 16:20:01 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-73197</guid>
		<description>This has worked exceptionally well on both xp sp3 FF 3.5.1 and openSuSE FF 3.5.1 while the start up was slow.  So what?  The really annoying part was the thing being slow to respond to cursor, google search bar and just about anything else one could imagine.

Cleaning out the temp folders did NOTHING.

Might I suggest a Tools-&gt;extensions that performs sqlite3 vacuum.  Then no one has to think about what is the best way now.  And you do it for example on a schedule like for example the FEBE extension does.

Then it becomes the uses responsibility.

By the way good article.  I&#039;m with Amir where do I find the meanings of not only sqlite files but use of all the mozilla files on every platform.

I get ticked about a lot of this &quot;hide and go seek knowledge&quot;.  Yes I do embedded kernel development and read the source.  But you know I can only specialize and correct so much at a time.  And for my stuff I leave ISO-9001 quality reviewed documentation.

I&#039;m with Mike Frysinger with this if I can help the next guy I do.  So I am not complaining,  I am asking how can I help the next person?</description>
		<content:encoded><![CDATA[<p>This has worked exceptionally well on both xp sp3 FF 3.5.1 and openSuSE FF 3.5.1 while the start up was slow.  So what?  The really annoying part was the thing being slow to respond to cursor, google search bar and just about anything else one could imagine.</p>
<p>Cleaning out the temp folders did NOTHING.</p>
<p>Might I suggest a Tools-&gt;extensions that performs sqlite3 vacuum.  Then no one has to think about what is the best way now.  And you do it for example on a schedule like for example the FEBE extension does.</p>
<p>Then it becomes the uses responsibility.</p>
<p>By the way good article.  I&#8217;m with Amir where do I find the meanings of not only sqlite files but use of all the mozilla files on every platform.</p>
<p>I get ticked about a lot of this &#8220;hide and go seek knowledge&#8221;.  Yes I do embedded kernel development and read the source.  But you know I can only specialize and correct so much at a time.  And for my stuff I leave ISO-9001 quality reviewed documentation.</p>
<p>I&#8217;m with Mike Frysinger with this if I can help the next guy I do.  So I am not complaining,  I am asking how can I help the next person?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir Syafrudin</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-72349</link>
		<dc:creator>Amir Syafrudin</dc:creator>
		<pubDate>Tue, 28 Jul 2009 03:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-72349</guid>
		<description>I guess I&#039;m one of those people who doesn&#039;t have big sqlite files for their Firefox profiles. Nevertheless, this is still a good hint to upgrade Firefox performance. I just hope we can have a more automatic vacuuming process in future Firefox releases. I believe this would be a great addition to Firefox users who dislikes going technical.

On a side note, where can I find definitions for each sqlite files?

Thank you.</description>
		<content:encoded><![CDATA[<p>I guess I&#8217;m one of those people who doesn&#8217;t have big sqlite files for their Firefox profiles. Nevertheless, this is still a good hint to upgrade Firefox performance. I just hope we can have a more automatic vacuuming process in future Firefox releases. I believe this would be a great addition to Firefox users who dislikes going technical.</p>
<p>On a side note, where can I find definitions for each sqlite files?</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: co</title>
		<link>http://mozillalinks.org/2009/07/vacuum-your-firefox-databases-for-better-performance/comment-page-1/#comment-72347</link>
		<dc:creator>co</dc:creator>
		<pubDate>Mon, 27 Jul 2009 22:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/?p=3567#comment-72347</guid>
		<description>A simple windows script.  It needs to be changed for location of sqlite3.exe.  I put common utilities in &#039;C:\Bin&#039;.

@echo off
setlocal
pushd

REM http://mozillalinks.org/wp/2009/07/vacuum-your-firefox-databases-for-better-performance/
REM http://www.sqlite.org/download.html

set profiles=%APPDATA%\Mozilla\Firefox\Profiles
cd /d %profiles%

dir /s *.sqlite
for /r %%a in (*.sqlite) do (
C:\Bin\sqlite3.exe &quot;%%a&quot; vacuum
)
dir /s *.sqlite

popd</description>
		<content:encoded><![CDATA[<p>A simple windows script.  It needs to be changed for location of sqlite3.exe.  I put common utilities in &#8216;C:\Bin&#8217;.</p>
<p>@echo off<br />
setlocal<br />
pushd</p>
<p>REM <a href="http://mozillalinks.org/wp/2009/07/vacuum-your-firefox-databases-for-better-performance/" rel="nofollow">http://mozillalinks.org/wp/2009/07/vacuum-your-firefox-databases-for-better-performance/</a><br />
REM <a href="http://www.sqlite.org/download.html" rel="nofollow">http://www.sqlite.org/download.html</a></p>
<p>set profiles=%APPDATA%\Mozilla\Firefox\Profiles<br />
cd /d %profiles%</p>
<p>dir /s *.sqlite<br />
for /r %%a in (*.sqlite) do (<br />
C:\Bin\sqlite3.exe &#8220;%%a&#8221; vacuum<br />
)<br />
dir /s *.sqlite</p>
<p>popd</p>
]]></content:encoded>
	</item>
</channel>
</rss>

