Hey,
Memcached only "thinks" in binary blobs. Append is just stacking the
new object at the end of the new object. If whatever you use to serialize
and de-serialize your objects doesn't understand this it won't return all
of the objects.
You'll need to modify the java client or otherwise provide
Hello Team,
I am using Memcached server (version -1.5.22) & spymemcached java client
(version - 2.12.3) . In a scenario i have appended multiple objects in
single existing key as like below i mentioned :-
User user = new User();
user.setName("Test");
user.setEmail("newu...@gmail.com");
Object