Redis: Difference between revisions
From DWIKI
(Created page with "=Links= *[https://redis.io/ Homepage] *[https://redis.io/topics/rediscli redis-cli] =Cheat sheet= ==Show stats== redis-cli -h 127.0.0.1 -p 6379 info") |
mNo edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
In-memory database | |||
=Links= | =Links= | ||
*[https://redis.io/ Homepage] | *[https://redis.io/ Homepage] | ||
*[https://redis.io/topics/rediscli redis-cli] | *[https://redis.io/topics/rediscli redis-cli] | ||
=HOWTO= | |||
==Tuning Redis== | |||
*https://redis.io/kb/doc/1mebipyp1e/performance-tuning-best-practices | |||
*https://severalnines.com/blog/performance-tuning-redis/ | |||
=Cheat sheet= | =Cheat sheet= | ||
==Show stats== | ==Show stats== | ||
redis-cli -h 127.0.0.1 -p 6379 info | redis-cli -h 127.0.0.1 -p 6379 info | ||
==Flush all== | |||
redis-cli FLUSHALL | |||
[[Category:Databases]] |
Latest revision as of 15:12, 17 March 2025
In-memory database
Links
HOWTO
Tuning Redis
- https://redis.io/kb/doc/1mebipyp1e/performance-tuning-best-practices
- https://severalnines.com/blog/performance-tuning-redis/
Cheat sheet
Show stats
redis-cli -h 127.0.0.1 -p 6379 info
Flush all
redis-cli FLUSHALL