mod_mem_cache implements an in-memory based storage manager.
mod_mem_cache can be configured to operate in two modes: caching open file
descriptors or caching objects in heap storage. mod_mem_cache
is most useful when used to cache locally generated content or to cache
backend server content for
Content stored and retrived keyed to the URL. Content with access protections is not cached.
The
The
The
The
The
LRU (Least Recently Used): LRU removes the objects that have not been
accessed for the longest time.
GDSF (GreadyDual-Size): This algorithm assigns priority to cached objects
based on the coast of a cache miss and the size of the object. Objects with
smallest priority are removed first.