Summary | Cache shares |
Queue | Ansel |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | mrubinsk (at) horde (dot) org |
Requester | duck (at) obala (dot) net |
Created | 02/05/2008 (6440 days ago) |
Due | |
Updated | 02/07/2008 (6438 days ago) |
Assigned | |
Resolved | 02/07/2008 (6438 days ago) |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ Accepted
Convinced...
a potentially large number of shares in the global cache. I know you
have a fairly large userbase, any ideas on memory/disk/whatever
consumption?
wonder about it, I don't see a reason why doing it here.
If you need an periodical clean up for your file based cache you can
add a cron job like this
for s in $( find cachedir -mtime -1 ); do
rm s
done
This will delete all files older then one day.
Assigned to Michael Rubinsky
a potentially large number of shares in the global cache.
backend that doesn't already limit it (like memcache), users can run
pruning scripts (or we can add limits if really necessary).
general cache config since it potentially stores large number of
shares.
time caching data that's never used in the cache, that's one thing,
but shares are pretty static and accessed often.
State ⇒ Feedback
potentially large number of shares in the global cache. I know you
have a fairly large userbase, any ideas on memory/disk/whatever
consumption?
Plus, this should probably be a seperate config in addition to the
general cache config since it potentially stores large number of shares.
Any one else with thoughts?
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Cache shares
Queue ⇒ Ansel
New Attachment: Ansel-cache.diff
State ⇒ New
cache them if "usecache" configuration option is enabled.