I am going to use memcache(not memcacheD) for my PHP application . I have few confusions .
I found this wrapper class for memcache.
1)As on connect method it
Any memcache API/wrapper will do. You can even build your own through PHP's CURL methods.
No. When your application makes a request, it attempts to connect to a single server, and "go-fish" to the next server on failure, NOT_FOUND, timeout, &tc. There may be some network latency, but a lot less then interacting with a database. If your concerned about I/O & latency, you should be able to architect a simple solution within your applications.
Up to you. Although the system is down, your application may still be trying to connect to it. If you decide to go with PECL's memcache API, your applications should be able to identify if memcached is operating normally on any given server. Memcache::checkServerStatus
This does exactly what it says. If you have memcached servers A, B, and D. And server A goes down. Both options will issue a USER_NOTICE; however, memcache.allow_failover=1
will continue to server B, and allow reads and writes. When memcache.allow_failover=0
all memcache I/O will return false gracefully.
Checkout the docs.
Memcached offers a stats
command, and PECL's memcache also gives a status method. However they're related to memory/slab statistics. If you would like a monitoring report of usage, Check out New Relic