Redis客户端
一、java客户端–jedis
1.1、获取jedis
jedis是什么?
生成一个jedis对象,该对象负责和指定的Redis节点进行通信
Jedis jedis = new Jedis("127.0.0.2",6379);
jedis的获取
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
1.2、jedis基本使用
jedis.set("hello","world");
jedis.get("hello");
jedis.rpush("mylist","1");
...
1.3、jedis连接池
二、python客户端–redis-py
2.1、安装:
sudo pip install redis
源码安装
2.2、使用
import reids
client = redis.Strict(host="127.0.0.1",port=6379)