Can anyone explain why memcached people decided to support multi get, but not multi set. For multimedia, I mean an operation involving more than one key (see Protocol http://code.google.com/p/memcached/wiki/NewCommands ).
Thus, you can get several keys in one shot (the main advantage is the standard savings that you get by making fewer round trips), but why can't you get mass gains?
My theory is that it is designed for fewer sets and too individually (for example, to read and read the cache). But I still don’t see how multi-element really contradicts the general philosophy of memcached.
I looked at the client features of http://code.google.com/p/memcached/wiki/NewCommonFeatures and it seems that some clients potentially support "Multi-Set" (why only in the binary protocol?). I am using Java spy memcached, btw.
source
share