Memcache : Confusions

前端 未结 1 1148
难免孤独
难免孤独 2020-12-22 01:21

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

相关标签:
1条回答
  • 2020-12-22 01:56

    Any memcache API/wrapper will do. You can even build your own through PHP's CURL methods.

    1) Does every single request pull all servers & cause network latency?

    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.

    2) Will request still be made to offline server?

    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

    2.1) What does memcache.allow_failover do?

    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.

    3) Memcached server reporting

    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

    0 讨论(0)
提交回复
热议问题