memcached.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. return ( ! is_null(static::$instance)) ? static::$instance : static::$instance = static::connect();
  17. }
  18. /**
  19. * Connect to the configured Memcached servers.
  20. *
  21. * @return Memcache
  22. */
  23. private static function connect()
  24. {
  25. if ( ! class_exists('Memcache'))
  26. {
  27. throw new \Exception('Attempting to use Memcached, but the Memcached PHP extension is not installed on this server.');
  28. }
  29. $memcache = new \Memcache;
  30. foreach (Config::get('cache.servers') as $server)
  31. {
  32. $memcache->addServer($server['host'], $server['port'], true, $server['weight']);
  33. }
  34. if ($memcache->getVersion() === false)
  35. {
  36. throw new \Exception('Memcached is configured. However, no connections could be made. Please verify your memcached configuration.');
  37. }
  38. return $memcache;
  39. }
  40. }