Skip to content

Instantly share code, notes, and snippets.

@c-bata
Created August 14, 2015 08:49
Show Gist options
  • Save c-bata/3c466bdcef4e9e50ebf8 to your computer and use it in GitHub Desktop.
Save c-bata/3c466bdcef4e9e50ebf8 to your computer and use it in GitHub Desktop.
DotinstalllのRedis入門メモ

Redis入門

http://dotinstall.com/lessons/basic_redis

Redisに保存してあるセッションデータを確認したい。 Redisのサーバは既に動いている。

redisクライアントの起動

redis

$ redis-cli
127.0.0.1:6379> 

データベースの選択

データベースは名前があるわけではなく、デフォルトで0~15番まで用意されている。 デフォルトだとredis-cliは0に接続されているので、切り替えたい時は select 10 など。

String

  • set key valueでセット
  • get key でゲット
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment