redis基本使用

Posted 星际海盗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis基本使用相关的知识,希望对你有一定的参考价值。

 

1. install

  add-apt-repository ppa:chris-lea/redis-server
  apt-get update
  apt-get install redis-server

2. config

locate redis.conf

or:   /etc/redis/redis.conf

set port

set bing ip

.....

3. start

command: redis-server   start redis server

command:redis-cli    link to redis server 

command:redis-cli -h host -p port -a password      excute command on remote server

command:ping      check redis whether it is running...

127.0.0.1:6379> ping
PONG

command:INFO      get redis server statistics infomation...

 

 

manager tool

https://redisdesktop.com/download

 




以上是关于redis基本使用的主要内容,如果未能解决你的问题,请参考以下文章

redis中基本命令

Redis的基本使用

Redis基本使用

003 redis的基本数据类型

SpringBoot整合Redis,基本使用

redis基本使用