apc.php 1.1 KB

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