9
11

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 3 years have passed since last update.

Redisコマンド一覧

Last updated at Posted at 2019-10-31

Redisコマンド一覧

redis-cli で接続

$ redis-cli -h xxxxx

パスワード認証

> AUTH password
OK

データベースを一覧表示する(データベース数)

> CONFIG GET databases
1) "databases"
2) "16"

上記ではデータベースの数は16です。

データベース毎のデータ数(キーの数)を表示

> INFO keyspace
# Keyspace
db0:keys=1539,expires=1,avg_ttl=12160

上記では、db0にkeysが1539件あります。

データベースを選択

> select 2

データベース番号で、使用するデータベースを選択します。

すべてのキーを表示

> keys *

条件に合うキーを表示

> key *hoge*

hogeを含むキーをすべて表示します

> keys [a-c]*

a か b か c で始まるキーをすべて表示します

データをセット

> set key value
9
11
1

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
9
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?