I am using Master Master approach for the Memcache Setup and inside my program i am providing the IP in this way
test.memcached.servers = server 1,server 2
MemcachedClientBuilder builder = new
XMemcachedClientBuilder(AddrUtil.getAddresses("test.memcached.servers"),new
int[]{1,3});
My question is with respect to the weights given to the server ??
*Will it give the server1 the weight 1 ??*
Or
*Will it give the server1 the weight 3 ??*
Please share your experience .
