51
35

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Redisに登録されているキー一覧の取得方法

Posted at
keys *
redis 127.0.0.1:6379> keys *
(empty list or set)
redis 127.0.0.1:6379> set hoge1 hoge
OK
redis 127.0.0.1:6379> set hoge2 hoge
OK
redis 127.0.0.1:6379> set fuga aaaaaaaaaaaaaaa
OK
redis 127.0.0.1:6379> keys *
1) "fuga"
2) "hoge1"
3) "hoge2"

51
35
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
51
35

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?