Details
Description
In the current implementation, there is no method for a non-CAS version of the append/prepend/incr/decr/add/replace operations. As per the memcached protocol, these operations do not require (but may be used with) a CAS id and requiring one greatly reduces the performance available by requiring a gets prior to the operation.
Perry
Perry
Issue Links
- is duplicated by
-
JCBC-143
Prepend should not require CAS
-
you could do something like this
c.prepend(0, "prepend-key", "value");
which would not require a CAS to be supplied/fetched. Will this suffice for now?
My suggestion would be to close this issue and open a separate issue for just append and prepend if it's still deemed a bug.