You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider an option to flush cache automatically/periodically. It may be also useful if it is not flushed at all or manually when going for long vacations or such.. so it should be just an option.
If flushed automatically it would be good to do it when connected to power.. might be in fact better trigger than automatic timer.
From the manual:
The variable diskCacheTruncateTime specifies the time for which an on-disk entry should remain unused before it is eligible for truncation; it defaults to 4 days and a half. The variable diskCacheTruncateSize specifies the size at which files are truncated after they have not been accessed for diskCacheTruncateTime; it defaults to 1MB. ```
hence for the beginning diskCacheUnlinkTime seems fine as is, while I do not like the truncate options - imho it is better to delete such files altogther. Therefore I always set diskCacheTruncateTime=diskCacheUnlinkTime+2 to leave them around until deleted.
The text was updated successfully, but these errors were encountered:
I'm going to have to think a bit more about whether this should be manual, or automatic (with an off switch). Good idea though, my cache is currently ~700mb.
perhaps more than a simple on/off switch then? Also a gui switch to control the diskCacheUnlinkTime would be nice.
There is also "preciseExpiry" which should be set when underlying filesystem does not support file-access-time (sdcards)
As an alternative, the expiration could be coded in Java or shell. The polipo code to do it is somehow very slow and does not do several things that people often wanted - such as shrink to a certain disk usage. So many people have used custom scripts such as http://code.google.com/p/dolipo/source/browse/trunk/dolipo/polipo_trimcache-0.2.py
Consider an option to flush cache automatically/periodically. It may be also useful if it is not flushed at all or manually when going for long vacations or such.. so it should be just an option.
If flushed automatically it would be good to do it when connected to power.. might be in fact better trigger than automatic timer.
From the manual:
The text was updated successfully, but these errors were encountered: