internal package
Foswiki::MetaCache A cache of Meta objects - initially used to speed up searching and sorting, but by foswiki 2.0 hopefully this will be used for all readonly accesses to the store.
Replaces the mishmash of the Search InfoCache Support package; cache of topic info. When information about search hits is compiled for output, this cache is used to avoid recovering the same info about the same topic more than once.ClassMethod
new($session) ObjectMethod
finish() ObjectMethod
isCached($webtopic) → boolean returns true if the topic is already in the cache.
ObjectMethod
removeMeta($web, $topic) removes but does not finish the meta object from cache
ObjectMethod
addMeta($web, $topic, $meta) → $meta returns the cached object or undef if the meta is not cacheable, i.e. it is not a loaded version, or it failed to load at all
ObjectMethod
get($web, $topic, $meta) → a cache obj (sorry, needs to be refactored out to return a Foswiki::Meta obj only get a requested meta object - web or topic typically, might work for attachments too
optionally the $meta parameter can be used to add that to the cache - useful if you've already loaded and parsed the topic.
and then, the MetaCache can only return Meta objects that actually exist