Unable to get Enyim.Caching MemcachedClient to work with Couchbase
问题 I realize that Couchbase provides a client to their memcached server, but I'm trying to get the enyim.caching client to work. Here's my trivial c# code that uses the Couchbase client (which works) and then pretty much the same thing with the enyim MemcachedClient: class Program { static void Main(string[] args) { var client = new CouchbaseClient(); client.Store(StoreMode.Set, "somekey", "somevalue"); var somevalue = client.Get<string>("somekey"); Console.WriteLine(somevalue); Console.ReadLine