I am using spymemcached client library v2.8.0
provided by couchbase folks. The memcached server installed is version 1.4.13
.
The configuration for memcached is pretty basic > -m 64 -p 11211 -u memcache -l 127.0.0.1
.
I am able to proper get, set, delete requests using the client library. But going through my logs I notice the warning messages from the spymemcached library like so -
WARN net.spy.memcached.MemcachedConnection: Could not redistribute to another node, retrying primary node for ...
I am not sure why is trying to redirect to another node in the cluster if there does not exist one.
I am connecting to the cache client using the below code -
String address = 127.0.0.1:11211;
new MemcachedClient(new ConnectionFactoryBuilder().setDaemon(true).build(), AddrUtil.getAddresses(address));
Any help appreciated.