UbuntuでRedisをインストールする
1258 ワード
本文はすでに私のブログにありますhttps://www.nsxsg.com/archives/174先発
文書ディレクトリ UbuntuでRedis をインストール
UbuntuでRedisをインストールする
1.Redisサーバ側のインストール
2.Redisステータスの表示
3.リンクRedis
4.簡単な操作
5.Redisの削除
文書ディレクトリ
UbuntuでRedisをインストールする
1.Redisサーバ側のインストール
sudo apt-get install -y redis-server
2.Redisステータスの表示
sudo /etc/init.d/redis-server status
3.リンクRedis
sudo redis-cli -h 127.0.0.1 -p 6379
4.簡単な操作
# key
127.0.0.1:6379> keys *
# key
127.0.0.1:6379> set key1 'hello world'
# key
127.0.0.1:6379> get key1
# key
127.0.0.1:6379> del key1
5.Redisの削除
sudo apt-get remove -y redis-server