Spymemcache - Does MemcachedClient have a built-in connection pool?

I use memcachedand use Java spymemcacheto connect to it.

My question is:

Does it have a MemcachedClientbuilt-in connection pool?

Is it possible to reuse the class instance for parallel work in memcached, or do I need to create a new instance every time I need it?

+4
source share
1 answer

From the documentation:

MemcachedClient .
. , , , - MemcachedClient.

https://code.google.com/p/spymemcached/wiki/Optimizations.

, , List ( 50) MemcachedClient get/put.

+2

All Articles