memcached.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php namespace System;
  2. class Memcached {
  3. /**
  4. * The Memcache instance.
  5. *
  6. * @var Memcache
  7. */
  8. private static $instance = null;
  9. /**
  10. * Get the singleton Memcache instance.
  11. *
  12. * @return Memcache
  13. */
  14. public static function instance()
  15. {
  16. if (is_null(static::$instance))
  17. {
  18. static::$instance = static::connect(Config::get('cache.servers'));
  19. }
  20. return static::$instance;
  21. }
  22. /**
  23. * Connect to the configured Memcached servers.
  24. *
  25. * @param array $servers
  26. * @return Memcache
  27. */
  28. private static function connect($servers)
  29. {
  30. if ( ! class_exists('Memcache'))
  31. {
  32. throw new \Exception('Attempting to use Memcached, but the Memcached PHP extension is not installed on this server.');
  33. }
  34. $memcache = new \Memcache;
  35. foreach ($servers as $server)
  36. {
  37. $memcache->addServer($server['host'], $server['port'], true, $server['weight']);
  38. }
  39. if ($memcache->getVersion() === false)
  40. {
  41. throw new \Exception('Memcached is configured. However, no connections could be made. Please verify your memcached configuration.');
  42. }
  43. return $memcache;
  44. }
  45. }