I'm trying, without luck at all, to make the EnyimMemcached library work with Couchbase Community server that I have installed on my local machine.
I'm using in web.config
<sectionGroup name="enyim.com">
<section name="memcached" type="Enyim.Caching.Configuration.MemcachedClientSection, Enyim.Caching" />
</sectionGroup>
<enyim.com>
<memcached protocol="Binary">
<servers>
<add address="localhost" port="8091" />
</servers>
<socketPool minPoolSize="10" maxPoolSize="100" connectionTimeout="00:00:10" deadTimeout="00:02:00" />
<authentication type="Enyim.Caching.Memcached.PlainTextAuthenticator, Enyim.Caching" userName="Administrator" password="1234" />
</memcached>
</enyim.com>
but I keep getting no hits on the local server and the
var result = _client.Store(StoreMode.Add, key, val);
keeps returning false
.
Is there any change that any of you work with it and can show me some light on setting it up correctly?
My config:
Basic wrapper for System.Web.Caching.Cache
For your configuration also check if all ports opened (8091, 8092). If you use separate port configuration also check if it is opened.