I'm using sqflite database as asset database that contains one table which size is around 5MB. User activities are changing some of the fields in that table.
I'm considering to apply scheduled vacuum command in runtime (on mobile device) to be able to control the application size.
There are limited information on the internet about usage of vacuum command on runtime and mobile devices/apps.
I've checked that "await db.execute('VACUUM');" command is working but couldn't see if it is affecting the db size.
Is there anybody who suggest this or says it is not necessary...
Thank you in advance.