apc.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php namespace System\Cache\Driver;
  2. class APC implements \System\Cache\Driver {
  3. /**
  4. * All of the loaded cache items.
  5. *
  6. * @var array
  7. */
  8. public $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. * @return mixed
  24. */
  25. public function get($key)
  26. {
  27. if (array_key_exists($key, $this->items))
  28. {
  29. return $this->items[$key];
  30. }
  31. $cache = apc_fetch(\System\Config::get('cache.key').$key);
  32. if ($cache === false)
  33. {
  34. return null;
  35. }
  36. return $this->items[$key] = $cache;
  37. }
  38. /**
  39. * Write an item to the cache.
  40. *
  41. * @param string $key
  42. * @param mixed $value
  43. * @param int $minutes
  44. * @return void
  45. */
  46. public function put($key, $value, $minutes)
  47. {
  48. apc_store(\System\Config::get('cache.key').$key, $value, $minutes * 60);
  49. }
  50. /**
  51. * Delete an item from the cache.
  52. *
  53. * @param string $key
  54. * @return void
  55. */
  56. public function forget($key)
  57. {
  58. apc_delete(\System\Config::get('cache.key').$key);
  59. }
  60. }