You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
The serialization API has been reworked. Instead of consuming a serializer and deserializer as separate arguments, client objects now expect an argument serde to be an object which implements serialize and deserialize as methods. (serialize and deserialize are still supported but considered deprecated.)
Validate integer inputs for expire, delay, incr, decr, and memlimit -- non-integer values now raise MemcacheIllegalInputError
Validate inputs for cas -- values which are not integers or strings of 0-9 now raise MemcacheIllegalInputError
Add prepend and append support to MockMemcacheClient.