driver.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php namespace Laravel\Cache\Drivers; use Closure;
  2. abstract class Driver {
  3. /**
  4. * Determine if an item exists in the cache.
  5. *
  6. * @param string $key
  7. * @return bool
  8. */
  9. abstract public function has($key);
  10. /**
  11. * Get an item from the cache.
  12. *
  13. * <code>
  14. * // Get an item from the cache driver
  15. * $name = Cache::driver('name');
  16. *
  17. * // Return a default value if the requested item isn't cached
  18. * $name = Cache::get('name', 'Taylor');
  19. * </code>
  20. *
  21. * @param string $key
  22. * @param mixed $default
  23. * @param string $driver
  24. * @return mixed
  25. */
  26. public function get($key, $default = null)
  27. {
  28. if ( ! is_null($item = $this->retrieve($key))) return $item;
  29. return ($default instanceof Closure) ? call_user_func($default) : $default;
  30. }
  31. /**
  32. * Retrieve an item from the cache driver.
  33. *
  34. * @param string $key
  35. * @return mixed
  36. */
  37. abstract protected function retrieve($key);
  38. /**
  39. * Write an item to the cache for a given number of minutes.
  40. *
  41. * <code>
  42. * // Put an item in the cache for 15 minutes
  43. * Cache::put('name', 'Taylor', 15);
  44. * </code>
  45. *
  46. * @param string $key
  47. * @param mixed $value
  48. * @param int $minutes
  49. * @return void
  50. */
  51. abstract public function put($key, $value, $minutes);
  52. /**
  53. * Get an item from the cache. If the item doesn't exist in the
  54. * cache, store the default value in the cache and return it.
  55. *
  56. * <code>
  57. * // Get an item from the cache, or cache a value for 15 minutes
  58. * $name = Cache::remember('name', 'Taylor', 15);
  59. *
  60. * // Use a closure for deferred execution
  61. * $count = Cache::remember('count', function() { return User::count(); }, 15);
  62. * </code>
  63. *
  64. * @param string $key
  65. * @param mixed $default
  66. * @param int $minutes
  67. * @return mixed
  68. */
  69. public function remember($key, $default, $minutes)
  70. {
  71. if ( ! is_null($item = $this->get($key, null))) return $item;
  72. $default = ($default instanceof Closure) ? call_user_func($default) : $default;
  73. $this->put($key, $default, $minutes);
  74. return $default;
  75. }
  76. /**
  77. * Delete an item from the cache.
  78. *
  79. * @param string $key
  80. * @return void
  81. */
  82. abstract public function forget($key);
  83. }