How can Redis only use memory storage instead of persistent data storage (the data will become empty every time it is restarted), that is to say, use it as a memory cache similar to Memcache. How to do this?
How can Redis only use memory storage instead of persistent data storage (the data will become empty every time it is restarted), that is to say, use it as a memory cache similar to Memcache. How to do this?
Just don’t enable persistence and comment out the save line.
Comment out the save
line