3

Running on small servers it would make sense offloading these as much as possible for performance. Also offloading will prevent from the server becoming a bottleneck. Therefore I use memcached for sessions, database indexes, user data etc.

Question; Would it be possible to connect my PHP (Zend) Opcache to Memcached-cluster?

Ultimately multiple server reusing the opcache from memcached? It would also make it possible to giantly increase my cache size?

1 Answers1

2

The official answer is no. Opcache only supports caching in shared memory; no other backends even exist. And trying to stuff the cache into memcached would just slow it down anyway, so there seems to be little point.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
  • In case of a shared cache its size could be greatly improved (each n seperate vs sum of n's). The more that is cached, the faster it will get, though accesstime could be slower. Also, that it isn't officially supported, I'm still interested in the question if it would be possible? – Robert De Wilde Mar 08 '14 at 11:16