Hi,
I'm trying to use set from the MemCachedClient and it is always returning
false. I am using -vv on the server side to print verbose.
The memcached server does not print any statements when I "set". It always
returns false. I am using the java client library
However, there are statements on the server when I "get" (although I get
nothing - since nothing was set)
When I get, on the server I see this:
<7 get somekey
>7 END
here are some more print statements from the server
<7 new client connection
<8 new client connection
<7 get somekey
>7 END
<8 connection closed.
<7 connection closed.
<7 new client connection
<8 new client connection
<7 get will
String key = "somekey";
boolean isSet = mc.set(key, object);
System.out.println ("it was successullly set: " + isSet); // always returns
false
Object object = mc.get(key);
if (object == null) {
System.out.println ("object is null")
}