memcached.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php namespace System\Cache\Driver;
  2. class Memcached implements \System\Cache\Driver {
  3. /**
  4. * All of the loaded cache items.
  5. *
  6. * @var array
  7. */
  8. private $items = array();
  9. /**
  10. * Determine if an item exists in the cache.
  11. *
  12. * @param string $key
  13. * @return bool
  14. */
  15. public function has($key)
  16. {
  17. return ( ! is_null($this->get($key)));
  18. }
  19. /**
  20. * Get an item from the cache.
  21. *
  22. * @param string $key
  23. * @param mixed $default
  24. * @return mixed
  25. */
  26. public function get($key, $default = null)
  27. {
  28. // --------------------------------------------------
  29. // If the item has already been loaded, return it.
  30. // --------------------------------------------------
  31. if (array_key_exists($key, $this->items))
  32. {
  33. return $this->items[$key];
  34. }
  35. // --------------------------------------------------
  36. // Attempt to the get the item from cache.
  37. // --------------------------------------------------
  38. $cache = \System\Memcached::instance()->get(\System\Config::get('cache.key').$key);
  39. // --------------------------------------------------
  40. // Verify that the item was retrieved.
  41. // --------------------------------------------------
  42. if ($cache === false)
  43. {
  44. return $default;
  45. }
  46. return $this->items[$key] = $cache;
  47. }
  48. /**
  49. * Write an item to the cache.
  50. *
  51. * @param string $key
  52. * @param mixed $value
  53. * @param int $minutes
  54. * @return void
  55. */
  56. public function put($key, $value, $minutes)
  57. {
  58. \System\Memcached::instance()->set(\System\Config::get('cache.key').$key, $value, 0, $minutes * 60);
  59. }
  60. /**
  61. * Delete an item from the cache.
  62. *
  63. * @param string $key
  64. * @return void
  65. */
  66. public function forget($key)
  67. {
  68. \System\Memcached::instance()->delete(\System\Config::get('cache.key').$key);
  69. }
  70. }