stasis-aries-wal/lladd/pageCache.h

27 lines
854 B
C
Raw Normal View History

#ifndef __PAGECACHE_H
#define __PAGECACHE_H
/**
Implements lladd's caching policy. Looks up pageid in the cache.
If pageid doesn't exist, then allocate a new slot for it. If
there are no new slots, then callback into bufferManager's
pageRead() function. Eventually, this could be extended to
support application specific caching schemes.
Currently, LLADD uses LRU-2S from Markatos "On Caching Searching
Engine Results"
If you would like to implement your own caching policy, implement
the three functions below. They are relatively straightforward.
Note that pageCache does not perform any file I/O of its own.
@todo pageCache should not include page.h at all. It should treat
pages as (int, void*) pairs.
*/
void pageCacheInit();
void pageCacheDeinit();
void * loadPagePtr(int pageid);
#endif