driver.php 616 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php namespace System\Cache;
  2. interface Driver {
  3. /**
  4. * Determine if an item exists in the cache.
  5. *
  6. * @param string $key
  7. * @return bool
  8. */
  9. public function has($key);
  10. /**
  11. * Get an item from the cache.
  12. *
  13. * @param string $key
  14. * @return mixed
  15. */
  16. public function get($key);
  17. /**
  18. * Write an item to the cache.
  19. *
  20. * @param string $key
  21. * @param mixed $value
  22. * @param int $minutes
  23. * @return void
  24. */
  25. public function put($key, $value, $minutes);
  26. /**
  27. * Delete an item from the cache.
  28. *
  29. * @param string $key
  30. * @return void
  31. */
  32. public function forget($key);
  33. }