after insert and delete lots records into sqlite, the size of sqlite db file keeps growing, is there any way to use django vacuum the tables?
- some settings that let sqlite auto-vacuum
- or manually write own django command to vacuum
Updated:
I use sqlite database browser to execute following SQL:
vacuum [my table];
commit;
it works great, I just want to do it program way