Created
October 26, 2021 15:00
-
-
Save iArtem88/c8f64b4e05bf3f818b37dc73b95ef5f8 to your computer and use it in GitHub Desktop.
redis commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis-cli -h | |
redis-cli INFO keyspace | |
# Keyspace | |
db0:keys=44,expires=7,avg_ttl=43781256 | |
db1:keys=6,expires=0,avg_ttl=0 | |
redis-cli -n 0 | |
127.0.0.1:6379> keys * | |
1) "laravel:5105c1618f136b2577ebf49c8c5bc7413f234553:TAG" | |
2) ... | |
127.0.0.1:6379> flushall | |
OK | |
127.0.0.1:6379> keys * | |
(empty list or set) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see cron:
ps aux|grep artisan