Which is the best Java memcached client, and why?
feedback
|
closed as not constructive by Bill the Lizard♦ May 8 at 12:52
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
As the author of spymemcached, I'm a bit biased, but I'd say it's mine for the following reasons: Designed from scratch to be non-blocking everywhere possible.When you ask for data, issue a set, etc... there's one tiny concurrent queue insertion and you get a Future to block on results (with some convenience methods for common cases like get). Optimized AggressivelyYou can read more on my optimizations page, but I do whole-application optimization. I still do pretty well in micro-benchmarks, but to compare fairly against the other client, you have to contrive unrealistic usage patterns (for example, waiting for the response on every set operation or building locks around gets to keep them from doing packet optimization). Tested ObsessivelyI maintain a pretty rigorous test suite with coverage reports on every release. Bugs still slip in, but they're usually pretty minor, and the client just keeps getting better. :) Well DocumentedThe examples page provides a quick introduction, but the javadoc goes into tremendous detail. Provides High-level AbstractionsI've got a Map interface to the cache as well as a functional CAS abstraction. Both binary and text support an incr-with-default mechanism (provided by the binary protocol, but rather tricky in text). Keeps up with the SpecsI do a lot of work on the server itself, so I keep up with protocol changes. I did the first binary protocol server implementations (both a test server and in memcached itself), and this was the first production-ready client to support it, and does so first-class. I've also got support for several hash algorithms and node distribution algorithms, all of which are well-tested for every build. You can do a stock ketama consistent hash, or a derivative using FNV-1 (or even java's native string hashing) if you want better performance. | |||||||||||||||||
feedback
|
|
As of about a year ago, when I had to use a memcached java client, the spymemcached connector was described as an optimized API with more features. Since then there've been a number of new releases of the memcached client so it may be worth checking out. FWIW the spy client has worked perfectly for me. | |||
|
feedback
|
|
If these are numbers still valid, then ... http://xmemcached.googlecode.com/svn/trunk/benchmark/benchmark.html | |||
|
feedback
|
|
I have been using SpyMemcached and have to agree that it is the best one available out there, with lots of newer improvements. | |||
|
feedback
|
|
There is the memcached client for Java and spymemcached. Not much experience with either though. | |||
|
feedback
|
|
I believe memcached java client is the best client. Features
Performance
| |||
|
feedback
|
|
Please try xmemcached,it is also nio based,and have some powerfull features. | |||
|
feedback
|