This one looks to be maintained: http://code.google.com/p/beitmemcached/
Did I miss any others?
BeITmemcached doesn't seem to support noreply.
Thanks!
What is your goal with noreply?
If you're having a performance problem you hope to solve with it,
you're better off with binary protocol and quiet commands -- this will
make it possible to be aware of and understand failures. You can read
about how I used this technique to improve performance here:
http://dustin.github.com/2009/09/23/spymemcached-optimizations.html
It doesn't specifically describe the semantic problems with
noreply, but you can infer the difference.
It's not just use cases, it's bugs. There are times when a response
might come back even though the client intended to send a noreply. We
had a case where it was, from the server point of view, a malformed
request. The client thought it asked for noreply. The server was
getting replies, and now the whole thing is out of sequence and you
just have to hang up.
I'd just think that if there's an error performing an operation,
it's OK to say what that error is. We fixed that in the binary
protocol. :)