redis helloworld

Posted 方方方方方方

tags:

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

一、启动 redis 服务

[[email protected] bin]# ./redis-server redis.conf

二、使用客户端连接服务

[[email protected] bin]# ./redis-cli -h 192.168.25.128 -p 6379

三、如何关闭服务端

[[email protected] bin]# ./redis-cli shutdown

四、如何退出客户端的连接

192.168.25.128:6379> exit

五、helloworld

192.168.25.128:6379> set str helloworld

 六、取值

192.168.25.128:6379> get str

七、返回值

"helloworld"

 

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

Redis系列--安装helloworld以及读懂配置文件

Redis初探,写个HelloWorld

Ubuntu16.04下安装redis并实现helloworld

OpenGL——第一个 OpenGL 程序

如何利用redis来进行分布式集群系统的限流设计

jedis连接redis