Distribute « memcached « Java Database Q&A





1. alternative to memcached that can persist to disk    stackoverflow.com

I am currently using memcached with my java app, and overall it's working great. The features of memcached that are most important to me are:

  • it's fast, since reads and writes are in-memory ...

2. memcached-like key/value cache that uses both RAM and disk    stackoverflow.com

I have a java web app that makes back-end use of a third-party web service. Calling the web service creates latency, which is important to avoid whenever possible. Also, ...