タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

redisに関するkadoyauのブックマーク (2)

  • Redis に保存されてる値を見ようと思った時に覚えておきたい redis コマンド | そんなこと覚えてない

    設定したりもっと細かい作業をしたい場合は help コマンドを使う。 種類ごとのヘルプをみたい場合は @ をつけるとよい 例えばリスト関連のコマンドを知りたいなら > help @list といった感じ。 以下は解説 keys 登録されている key がわからないと何もできないので、keyの一覧をみる方法 > keys * 引数にはパターンを入力する hogeではじまるものに絞りこみしたい場合は > key hoge* とかする。shell の場合はアスタリスクはエスケープする必要があるのに注意 $ redis-cli keys \* type redis は key に格納された値の種類によって取得コマンドが違うらしい。 値をみるために種類の確認が必要。 hoge というキーがあった場合は > type hoge とする。 返す値としては string list set zset has

  • Get started using Redis clients

    Get started using Redis clients. Select your library and connect your application to a Redis database. Then, try an example. Here, you will learn how to connect your application to a Redis database. If you're new to Redis, you might first want to install Redis with Redis Stack and RedisInsight. For more Redis topics, see Using and Managing Redis. If you're ready to get started, see the following g

  • 1