memcached.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. // -----------------------------------------------------
  19. // Verify that the Memcache extension is installed.
  20. // -----------------------------------------------------
  21. if ( ! class_exists('Memcache'))
  22. {
  23. throw new \Exception('Attempting to use Memcached, but the Memcached PHP extension is not installed on this server.');
  24. }
  25. // -----------------------------------------------------
  26. // Instantiate the Memcache class.
  27. // -----------------------------------------------------
  28. $memcache = new \Memcache;
  29. // -----------------------------------------------------
  30. // Configure the Memcache servers.
  31. // -----------------------------------------------------
  32. foreach (Config::get('cache.servers') as $server)
  33. {
  34. $memcache->addServer($server['host'], $server['port'], true, $server['weight']);
  35. }
  36. // -----------------------------------------------------
  37. // Verify Memcache was configured successfully.
  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. static::$instance = $memcache;
  44. }
  45. return static::$instance;
  46. }
  47. }