memcached.php 1.1 KB

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