How to run vacuum on sqlite
On any SQLite based database (e.g. Firefox or Liferea) you can run "VACUUM" to reduce the database file size. To do this you need the SQLite command line client which can be run using
sqlite3 <database file>When called like this you get a query prompt. To directly run "VACUUM" just call
sqlite3 <database file> "VACUUM;"Ensure that the program using the database file is not running!