apc.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php namespace Laravel\Cache\Drivers;
  2. class APC extends Driver {
  3. /**
  4. * The cache key from the cache configuration file.
  5. *
  6. * @var string
  7. */
  8. private $key;
  9. /**
  10. * Create a new APC cache driver instance.
  11. *
  12. * @param string $key
  13. * @return void
  14. */
  15. public function __construct($key)
  16. {
  17. $this->key = $key;
  18. }
  19. /**
  20. * Determine if an item exists in the cache.
  21. *
  22. * @param string $key
  23. * @return bool
  24. */
  25. public function has($key)
  26. {
  27. return ( ! is_null($this->get($key)));
  28. }
  29. /**
  30. * Retrieve an item from the cache driver.
  31. *
  32. * @param string $key
  33. * @return mixed
  34. */
  35. protected function retrieve($key)
  36. {
  37. if ( ! is_null($cache = apc_fetch($this->key.$key))) return $cache;
  38. }
  39. /**
  40. * Write an item to the cache for a given number of minutes.
  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($this->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($this->key.$key);
  60. }
  61. }