《Redis 系列》- Jedis入门

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

项目结构

《Redis 系列》- Jedis入门_第1张图片

配置文件

apply plugin:'java'

repositories{
	maven{
		url 'http://maven.aliyun.com/nexus/content/groups/public/'
	}
}

dependencies{
	compile group: 'redis.clients', name: 'jedis', version: '2.9.0'
}

Program.java

public class Program {
	
	public static void main(String[] args) {
		Jedis jedis=new Jedis("192.168.63.133",6379);
		//jedis.set("name", "张三");
		System.out.println(jedis.get("name"));
	}
}

CRT界面

[root@localhost ~]# cd /usr/local/redis
[root@localhost redis]# ./bin/redis-cli
127.0.0.1:6379> keys *
1) "name"
127.0.0.1:6379> get name
"\xe5\xbc\xa0\xe4\xb8\x89"
127.0.0.1:6379> 

在redis中,字符串是以二进制保存的,所有在crt上看到的是乱码。而在Jedis中看到是正常的。

转载于:https://my.oschina.net/kimisme/blog/1608072

你可能感兴趣的:(《Redis 系列》- Jedis入门)