apc.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. 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. if (array_key_exists($key, $this->items))
  29. {
  30. return $this->items[$key];
  31. }
  32. $cache = apc_fetch(\System\Config::get('cache.key').$key);
  33. if ($cache === false)
  34. {
  35. return $default;
  36. }
  37. return $this->items[$key] = $cache;
  38. }
  39. /**
  40. * Write an item to the cache.
  41. *
  42. * @param string $key
  43. * @param mixed $value
  44. * @param int $minutes
  45. * @return void
  46. */
  47. public function put($key, $value, $minutes)
  48. {
  49. apc_store(\System\Config::get('cache.key').$key, $value, $minutes * 60);
  50. }
  51. /**
  52. * Delete an item from the cache.
  53. *
  54. * @param string $key
  55. * @return void
  56. */
  57. public function forget($key)
  58. {
  59. apc_delete(\System\Config::get('cache.key').$key);
  60. }
  61. }