views:

50

answers:

2

Basically, I want memcached that can store over 1MB.

+1  A: 

The memcached wiki page on WhyNotMemcached suggests MogileFS as another distributed key/value storage technology that can store objects larger than 1MB.

Bill Karwin
A: 

Have you considered memcached?

What are your requirements? A very large object cache is better suited for things like varnish where latency isn't the most important part of the system memcached will happily store your 25MB objects, but it won't be noticeably faster than using something else since more time will be spent transferring the object than locating it.

Dustin