- store and compare the number of objects stored after last sync - use a (configurable) refresh interval and periodically force re-sync ATTENTION: requires database schema updates
4 lines
149 B
SQL
4 lines
149 B
SQL
-- improve cache synchronization (#3933)
|
|
ALTER TABLE `kolab_folders`
|
|
ADD `changed` DATETIME DEFAULT NULL,
|
|
ADD `objectcount` BIGINT DEFAULT NULL;
|