memcached.php 902 B

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