apc.php 909 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php namespace System\Cache;
  2. use System\Config;
  3. class APC implements Driver {
  4. /**
  5. * Determine if an item exists in the cache.
  6. *
  7. * @param string $key
  8. * @return bool
  9. */
  10. public function has($key)
  11. {
  12. return ( ! is_null($this->get($key)));
  13. }
  14. /**
  15. * Get an item from the cache.
  16. *
  17. * @param string $key
  18. * @return mixed
  19. */
  20. public function get($key)
  21. {
  22. return ( ! is_null($cache = apc_fetch(Config::get('cache.key').$key))) ? $cache : null;
  23. }
  24. /**
  25. * Write an item to the cache.
  26. *
  27. * @param string $key
  28. * @param mixed $value
  29. * @param int $minutes
  30. * @return void
  31. */
  32. public function put($key, $value, $minutes)
  33. {
  34. apc_store(Config::get('cache.key').$key, $value, $minutes * 60);
  35. }
  36. /**
  37. * Delete an item from the cache.
  38. *
  39. * @param string $key
  40. * @return void
  41. */
  42. public function forget($key)
  43. {
  44. apc_delete(Config::get('cache.key').$key);
  45. }
  46. }