0
点赞
收藏
分享

微信扫一扫

什么是Jedis?

Jedis 是 Redis 官方首选的 Java 客户端开发包。

实例方法:


1



import redis.clients.jedis.*



1

2

3



Jedis jedis = new Jedis("localhost");

jedis.set("foo", "bar");

String value = jedis.get("foo");


支持的特效:

  • Sorting
  • Connection handling
  • Commands operating on any kind of values
  • Commands operating on string values
  • Commands operating on hashes
  • Commands operating on lists
  • Commands operating on sets
  • Commands operating on sorted sets
  • Transactions
  • Pipelining
  • Publish/Subscribe
  • Persistence control commands
  • Remote server control commands
  • Connection pooling
  • Sharding (MD5, MurmurHash)
  • Key-tags for sharding
  • Sharding with pipelining
  • Scripting with pipelining

Maven:


1



    redis.clients    jedis    2.0.0    jar    compile


API文档:​


你要保守你心,胜过保守一切。

作者:刘俊涛的博客​​




举报

相关推荐

0 条评论