memcached.php 1.2 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. 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. // -----------------------------------------------------
  24. // Configure the Memcache servers.
  25. // -----------------------------------------------------
  26. foreach (Config::get('cache.servers') as $server)
  27. {
  28. $memcache->addServer($server['host'], $server['port'], true, $server['weight']);
  29. }
  30. // -----------------------------------------------------
  31. // Verify Memcache was configured successfully.
  32. // -----------------------------------------------------
  33. if ($memcache->getVersion() === false)
  34. {
  35. throw new \Exception('Memcached is configured. However, no connections could be made. Please verify your memcached configuration.');
  36. }
  37. static::$instance = $memcache;
  38. }
  39. return static::$instance;
  40. }
  41. }