Explain whether it is possible to share a single instance of a Memcache between multiple PHP projects.

  • Yes
  • No
  • Depends on the server configuration
  • Depends on the PHP version
No, it is not possible to share a single instance of Memcache between multiple PHP projects. Memcache is an in-memory caching system that is specific to each PHP application. Each application needs to have its own instance of Memcache to store and retrieve its own cached data. Learn more: http://php.net/manual/en/book.memcache.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *