TIMEX
TIMEX

Reputation: 271884

I want to cache an entire list...but it won't fit in Memcache

Because this list is like 2MB big...and memcache max memory is only 1MB.

Is there a simple key/value alternative, just like memcache, except it can do bigger size?

Upvotes: 0

Views: 84

Answers (2)

Fuad Malikov
Fuad Malikov

Reputation: 2345

You can try Hazelcast. It is an open source clustering and highly scalable data distribution platform for Java. The current release is 1.8.4. The next one will have both Memcache and Rest interfaces available. You can give it a try.

Upvotes: 0

tzaman
tzaman

Reputation: 47790

If you're up for it, you can recompile memcached with a higher size limit, look here: http://code.google.com/p/memcached/wiki/FAQ#Why_are_items_limited_to_1_megabyte_in_size?

Upvotes: 1

Related Questions