Skip to content

Instantly share code, notes, and snippets.

@kgriffs
Last active August 24, 2022 03:18
Start redis server without disk persistence; memory only for testing (avoids having to clean up a dump.rdb file)
redis-server --save "" --appendonly no
@kgriffs
Copy link
Author

kgriffs commented Aug 24, 2022

Tip: Add this to your ~/.zshrc file:

alias redis=redis-server --save "" --appendonly no

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment