Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. In order to check if Redis is really working.
  2.  
  3. First, flush all keys stored in redis in order to remove old cache entries
  4. ```
  5. $ redis-cli FLUSHALL
  6. ```
  7.  
  8. Monitor REDIS realtime.
  9. ```
  10. $ redis-cli MONITOR
  11. ```
  12.  
  13. The reload your application and see if something is going in your monitor. You should be able to see some `SET` happening. This means that Redis is storing the cache.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement