Updates:
Status: Accepted
Owner: [email protected]Comment #5 on issue 220 by [email protected]: Binary Increment returns old cas
http://code.google.com/p/memcached/issues/detail?id=220 Easier repro:
import mc_bin_client c = mc_bin_client.MemcachedClient() c.set('a', 0, 0, '100')
(2913549530, 1, '')
c.incr('a', 999)
(1099, 1)
c.incr('a', 999)
(2098, 3)
c.incr('a', 999)
(3097, 4)I don't see that in the engine branch, but I do see it in 1.4.7-2-g51c8f31. I'll put together a fix real quick.
