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
@@ -54,7 +53,11 @@ public static void main(String[] args) {
54
53
pool.initialize();
55
54
56
55
// get client instance
57
-
MemCachedClientmc = newMemCachedClient("test");
56
+
MemCachedClientmc;
57
+
if (args[0].equals("ascii"))
58
+
mc = newMemCachedClient("test", false);
59
+
else
60
+
mc = newMemCachedClient("test", true);
58
61
59
62
StringkeyBase = "testKey";
60
63
Stringobject = "This is a test of an object blah blah es, serialization does not seem to slow things down so much. The gzip compression is horrible horrible performance, so we only use it for very large objects. I have not done any heavy benchmarking recently";
0 commit comments