Hi , We are using Memcache as a dataStore for our high traffic web site .Under which there may be 700 concurrent users at a time .
Our set is that , there are six web servers in front , controlled by a Load Balancer hitting two Mmecache servers which are in cluster . * * *String location = server1:11211 server2:11211 * *MemcachedClientBuilder builder = new XMemcachedClientBuilder(AddrUtil.getAddresses(location));* *builder.setConnectionPoolSize(5);* Till now i am using the setConnectionPoolSize to 5 . My questions are 1. Is setting ConnectionPoolSize to 5 is correct in my case ?? 2. Is setting ConnectionPoolSize factor impacts the application performance anyway .
