We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, i am so confused that statsCacheDump() in BinaryClient always return an empty map event if i had set the value, here is my test case:
SockIOPool pool = SockIOPool.getInstance(); pool.setServers(new String[] { "xxxx:xx" }); pool.initialize(); MemCachedClient client = new BinaryClient(); client.flushAll(); client.set("test", "1"); Map<String, Map<String, String>> dumpMap = client.statsCacheDump(1, 0); System.out.println(dumpMap);
the output of the test case is "{xxxx:xx={}}", but the output of my memcached's client is "ITEM test [1 b; 1419009188 s]". Here is the log:
My OS is ubuntu and i am using memcached-1.4.21.tar.gz
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, i am so confused that statsCacheDump() in BinaryClient always return an empty map event if i had set the value, here is my test case:
the output of the test case is "{xxxx:xx={}}",
but the output of my memcached's client is "ITEM test [1 b; 1419009188 s]".
Here is the log:
My OS is ubuntu and i am using memcached-1.4.21.tar.gz
The text was updated successfully, but these errors were encountered: