Looking for a FIFO/LRU file storage system?

I guess all Memory caching library have an option to persist or expand on disk. At least, EHCache does So you can just configure a cache library to write on disk (either because you want the data to be persistant, or to expand the cache size over your memory limits) Note that EhCache has LRU capabilities.

I guess all Memory caching library have an option to persist or expand on disk. At least, EHCache does. So you can just configure a cache library to write on disk (either because you want the data to be persistant, or to expand the cache size over your memory limits).

Note that EhCache has LRU capabilities.

I'm looking to implement a disk based caching system. The idea is to allocate a certain amount of disk space and save however much data fits in there, discarding of old files as I run out of space. LRU is my first choice of deletion strategy, but I'm willing to settle for FIFO.

When googling for cache algorithms, the discussion seems to be dominated by memory-based caching. Memcached, for example, would be exactly what I'm looking for, except that it's memory based. On the other hand, solutions like Memcachedb, couchdb etc. don't seem to have LRU capabilities.

The closest thing I've found is the squid proxy server storage systems. COSS seems to be the most documented one, but to use it I would probably have to rewrite it as a stand-alone process (or library). What project or (java/python) library can I use for such a thing?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions