Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.3.0
-
None
-
None
Description
When performing a simple Store operation against a MemcachedClient however, I get a NotImplementedException
Sample code:
var config = new MemcachedClientConfiguration();
config.AddServer("127.0.0.1", 11219);
var client = new MemcachedClient(config);
var res = client.Store(StoreMode.Set, "key", "value");
Console.WriteLine("result: " + res);
var value = client.Get("key");
Console.WriteLine("value: " + value);
Patch: http://review.couchbase.org/#/c/31039/
I would continue to use the 1.2.9 client if I were only using the MemcachedClient and not the CouchbaseClient.