redis.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php namespace Laravel\Cache\Drivers;
  2. class Redis extends Driver {
  3. /**
  4. * The Redis database instance.
  5. *
  6. * @var Laravel\Redis
  7. */
  8. protected $redis;
  9. /**
  10. * Create a new Redis cache driver instance.
  11. *
  12. * @param Laravel\Redis $redis
  13. * @return void
  14. */
  15. public function __construct(\Laravel\Redis $redis)
  16. {
  17. $this->redis = $redis;
  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->redis->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 = $this->redis->get($key)))
  38. {
  39. return unserialize($cache);
  40. }
  41. }
  42. /**
  43. * Write an item to the cache for a given number of minutes.
  44. *
  45. * <code>
  46. * // Put an item in the cache for 15 minutes
  47. * Cache::put('name', 'Taylor', 15);
  48. * </code>
  49. *
  50. * @param string $key
  51. * @param mixed $value
  52. * @param int $minutes
  53. * @return void
  54. */
  55. public function put($key, $value, $minutes)
  56. {
  57. $this->redis->set($key, serialize($value));
  58. $this->redis->expire($key, $minutes * 60);
  59. }
  60. /**
  61. * Delete an item from the cache.
  62. *
  63. * @param string $key
  64. * @return void
  65. */
  66. public function forget($key)
  67. {
  68. $this->redis->del($key);
  69. }
  70. }