This question asks for one in java,

what's the best candidate in PHP?

BTW,does the following establish:

distributed key value store == distributed cache

?

link|improve this question

49% accept rate
feedback

3 Answers

There is Redis with advanced cache manipulation functions:

Redis is an advanced key-value store. It is similar to memcached but the dataset is not volatile, and values can be strings, exactly like in memcached, but also lists, sets, and ordered sets. All this data types can be manipulated with atomic operations to push/pop elements, add/remove elements, perform server side union, intersection, difference between sets, and so forth. Redis supports different kind of sorting abilities.

How is Redis supports distributed servers:

Redis supports client-side sharding via consistent hashing. Currently there is no support for fail tolerance nor to add or remove clusters at run time.

link|improve this answer
I never heard that Memcached is distributed. – user198729 Apr 9 '10 at 15:10
Important to note that Memcached is not persistent, as the original question requested. – Adam Backstrom Apr 9 '10 at 15:10
Removing memcached – Ivan Nevostruev Apr 9 '10 at 15:14
BTW, memcached can be used as distributed storage, but it require client side code to choose different server based on some kind of client_id % number_of_servers logic. – Ivan Nevostruev Apr 9 '10 at 15:18
@Ivan Nevostruev ,really? can you elaborate that logic? – user198729 Apr 9 '10 at 15:27
show 1 more comment
feedback

Have a look at Cassandra, it is used by Facebook and should be easy to use with PHP.

link|improve this answer
feedback

use MongoDb or Memcached

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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