Closed GoogleCodeExporter closed 9 years ago
I agree, it's actually designed around Memcached's 'Check and Set' mechanic.
You get the CAS value out with:
object Get(string key, out ulong ucas)
You can then pass in the CAS value into operations that accept it to ensure
that you only perform an operation if the
key has not been modified. The idea is that everytime you modify a value the
CAS value is incremented so the client can
tell if it's been modified since its been read or not.
Original comment by demis.be...@gmail.com
on 1 Jun 2010 at 8:29
thanks for the explanation
Original comment by jad...@gmail.com
on 1 Jun 2010 at 8:45
Original comment by demis.be...@gmail.com
on 1 Jun 2010 at 8:47
Original issue reported on code.google.com by
jad...@gmail.com
on 1 Jun 2010 at 8:22