alternative to memcached that can persist to disk
问题 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 and don't touch the disk it's just a key/value store (since that's all my app needs) it's distributed it uses memory efficiently by having each object live on exactly one server it doesn't assume that the objects are from a database (since my objects are not database objects) However, there is one thing