Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to ask if anyone knows a JAVA Caching Framework with the following properties:

  • I have big data files (2mb up to 5gb), which i need to serialize if the memory increases and deserialize them on demand.

  • Last recently used strategy

  • I want to handle serialization/deserializtion on my own, this means i just want to know from the framework when I have to serialize. Deserializing is on user demand.

  • I want to have minimum IO as I have big data

If there is no direct framework for this, maybe you can point me to a heuristik or any other strategy? SoftReferences/WeakReference as a solution do not work, as i can't serialize, even if I get noticed when they are garbage collected (to less memory left for serializing or even worse: file gone before serialization).

Thanks!

share|improve this question
1  
Possibly a duplicate Write caching – Durandal Sep 7 '12 at 13:57

2 Answers

Try Ehcache . Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache

share|improve this answer
Isn't Ehcache specialized to act as cache for a Database, not arbitraty data? – Durandal Sep 7 '12 at 14:08

(disclaimer - I work for GigaSpaces)

GigaSpaces XAP DataGrid provides a full object oriented Java caching solution.

  • Storage type - Different storage types can be assigned to different parts of the data. Also XAP supportd Extrenal Data Source integration such as DB and NoSQLto allow offloading of big data.
  • Eviction policy - Different eviction policies can be set including LRU.
  • The storage type uses Java serialization as such one can implement Externalizable and gain full control.
  • XAP is extremely efficient in using network resource and IO in general.
share|improve this answer
ok, anyone out there without any interest sellings his software? i need this for an open-source project. there is no DB in the background. – user1654885 Sep 10 '12 at 6:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.