什么是Jedis?
Posted God is Love
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了什么是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文档:http://tool.oschina.net/apidocs/apidoc?api=jedis-2.1.0
以上是关于什么是Jedis?的主要内容,如果未能解决你的问题,请参考以下文章