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
I have been trying to get values memcached cluster on aws with no luck.
Those values were set by AWS java sdk with ketama as hash method. There are 5 nodes in cluster.
ConnectionFactoryBuilder connectionFactoryBuilder = new ConnectionFactoryBuilder();
connectionFactoryBuilder.setLocatorType(Locator.CONSISTENT);
connectionFactoryBuilder.setHashAlg(DefaultHashAlgorithm.KETAMA_HASH);
ConnectionFactory connFactory = connectionFactoryBuilder.build();
MemcachedClient client = new MemcachedClient(connFactory, endpoints)
```;
On the node js side, I checked ketama is set as default already.
But when I try to get data by keys, I only get around 28% of them.
Can you suggest how to make both side work together?
Thanks.
The text was updated successfully, but these errors were encountered:
Hi guys,
I have been trying to get values memcached cluster on aws with no luck.
Those values were set by AWS java sdk with ketama as hash method. There are 5 nodes in cluster.
The text was updated successfully, but these errors were encountered: