Redisson入门
Redisson入门
Author:Ricky Date:2017-04-24
Redisson概述
Redisson是架设在Redis基础上的一个Java驻内存数据网格(In-Memory Data Grid)。充分的利用了Redis键值数据库提供的一系列优势,基于Java实用工具包中常用接口,为使用者提供了一系列具有分布式特性的常用工具类。使得原本作为协调单机多线程并发程序的工具包获得了协调分布式多机多线程并发系统的能力,大大降低了设计和研发大规模分布式系统的难度。同时结合各富特色的分布式服务,更进一步简化了分布式环境中程序相互之间的协作。
地址:https://github.com/redisson/redisson
Redisson功能

Redisson功能
- 支持同步/异步/异步流/管道流方式连接
- 多样化数据序列化
- 集合数据分片
- 分布式对象
- 分布式集合
- 分布式锁和同步器
- 分布式服务
- 独立节点模式
- 三方框架整合
HelloWorld
引入依赖包
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.3.2</version>
</dependency>
程序化配置方法
Config config = new Config();
config.
useSingleServer().setAddress("127.0.0.1:6379");
RedissonClient
redisson = Redisson.create(config);
文件方式配置
Config
config = Config.fromJSON(new File("config-file.json"));
Config
config = Config.fromYAML(new File("config-file.yaml")); RedissonClient
RedissonClient redisson =
Redisson.create(config);
Spring方式
<redisson:client>
<redisson:single-server
address=“127.0.0.1:6379" />
</redisson:client>
HelloWorld 3
验证是否成功
redisson.getConfig().toJSON().toString()
结果
{"singleServerConfig":{"idleConnectionTimeout":10000,"pingTimeout":1000,"connectTimeout":10000,"timeout":3000,"retryAttempts":3,"retryInterval":1500,"reconnectionTimeout":3000,"failedAttempts":3,"subscriptionsPerConnection":5,"address":"redis://127.0.0.1:6379","subscriptionConnectionMinimumIdleSize":1,"subscriptionConnectionPoolSize":50,"connectionMinimumIdleSize":10,"connectionPoolSize":64,"database":0,"dnsMonitoring":false,"dnsMonitoringInterval":5000},"threads":0,"nettyThreads":0,"codec":{"class":"org.redisson.codec.JsonJacksonCodec"},"codecProvider":{"class":"org.redisson.codec.DefaultCodecProvider"},"resolverProvider":{"class":"org.redisson.liveobject.provider.DefaultResolverProvider"},"redissonReferenceEnabled":true,"useLinuxNativeEpoll":false}
连接方式
RedissonClient
client = Redisson.create(config);
RAtomicLong longObject =
client.getAtomicLong('myLong');
//
同步执行方式
longObject.compareAndSet(3, 401);
//
异步执行方式
longObject.compareAndSetAsync(3, 401);
RedissonReactiveClient client = Redisson.createReactive(config);
RAtomicLongReactive longObject = client.getAtomicLong('myLong');
//
异步流执行方式
longObject.compareAndSet(3,
401);
数据序列化

集合数据分片
在集群模式下,Redisson为单个Redis集合类型提供了自动分片的功能。
在自动分片功能的帮助下,单个集合拆分以后均匀的分布在整个集群里,而不是被挤在单一一个节点里。
Redisson通过自身的分片算法,将一个大集合拆分为若干个片段(默认231个,分片数量范围是3 - 16834),然后将拆分后的片段均匀的分布到集群里各个节点里,保证每个节点分配到的片段数量大体相同。比如在默认情况下231个片段分到含有4个主节点的集群里,每个主节点将会分配到大约57个片段,同样的道理如果有5个主节点,每个节点会分配到大约46个片段。
分布式对象
通用对象桶(Object
Bucket)
二进制流(Binary
Stream)
地理空间对象桶(Geospatial
Bucket)
BitSet
原子整长形(AtomicLong)
原子双精度浮点数(AtomicDouble)
话题(订阅分发)
布隆过滤器(Bloom
Filter)
基数估计算法(HyperLogLog)
示例
通用桶对象
RBucket<AnyObject>
bucket = redisson.getBucket("anyObject"); bucket.set(new AnyObject(1));
AnyObject
obj = bucket.get();
原子整长型
RAtomicLong
atomicLong = redisson.getAtomicLong("myAtomicLong");
atomicLong.set(3);
atomicLong.incrementAndGet();
atomicLong.get();
分布式集合
映射(Map)
多值映射(Multimap)
集(Set)
有序集(SortedSet)
计分排序集(ScoredSortedSet)
字典排序集(LexSortedSet)
列表(List)
列队(Queue)
双端队列(Deque)
阻塞队列(Blocking
Queue)
有界阻塞列队(Bounded
Blocking Queue)
阻塞双端列队(Blocking Deque)
阻塞公平列队(Blocking
Fair Queue)
延迟列队(Delayed
Queue)
优先队列(Priority Queue)
优先双端队列(Priority
Deque)
分布式集合
示例
Map
RMap<String,
SomeObject> map = redisson.getMap("anyMap");
SomeObject
prevObject = map.put("123", new SomeObject());
SomeObject currentObject =
map.putIfAbsent("323", new SomeObject());
SomeObject
obj = map.remove("123");
Set
RSet<SomeObject> set = redisson.getSet("anySet");
set.add(new
SomeObject());
set.remove(new
SomeObject());
分布式锁
可重入锁(Reentrant
Lock)
公平锁(Fair Lock)
联锁(MultiLock)
红锁(RedLock)
读写锁(ReadWriteLock)
信号量(Semaphore)
可过期性信号量(PermitExpirableSemaphore)
闭锁(CountDownLatch)
示例
RLock
lock = redisson.getLock("anyLock");
//
最常见的使用方法
lock.lock();
//
支持过期解锁功能
10秒钟以后自动解锁
// 无需调用unlock方法手动解锁
lock.lock(10,
TimeUnit.SECONDS);
//
尝试加锁,最多等待100秒,上锁以后10秒自动解锁
boolean res = lock.tryLock(100, 10, TimeUnit.SECONDS);
lock.unlock();
分布式服务
分布式远程服务(Remote
Service)
分布式实时对象(Live
Object)服务
分布式执行服务(Executor
Service)
分布式调度任务服务(Scheduler
Service)
分布式映射归纳服务(MapReduce)
服务端(远端)实例
RRemoteService remoteService = redisson.getRemoteService();
SomeServiceImpl someServiceImpl = new SomeServiceImpl();
// 在调用远程方法以前,应该首先注册远程服务
// 只注册了一个服务端工作者实例,只能同时执行一个并发调用
remoteService.register(SomeServiceInterface.class, someServiceImpl);
// 注册了12个服务端工作者实例,可以同时执行12个并发调用
remoteService.register(SomeServiceInterface.class,
someServiceImpl, 12);
客户端(本地)实例
RRemoteService
remoteService = redisson.getRemoteService();
SomeServiceInterface
service = remoteService.get(SomeServiceInterface.class);
String
result = service.doSomeStuff(1L, "secondParam", new AnyParam());
独立节点模式
Redisson Node指的是Redisson在分布式运算环境中作为独立节点运行的一种模式。Redisson Node的功能可以用来执行通过分布式执行服务或分布式调度执行服务发送的远程任务,也可以用来为分布式远程服务提供远端服务。
依赖redisson-all.jar
独立节点模式-配置
// Redisson程序化配置代码
Config config = ...
// Redisson Node 程序化配置方法
RedissonNodeConfig nodeConfig = new RedissonNodeConfig(config);
Map<String, Integer> workers = new HashMap<String,
Integer>();
workers.put("test", 1);
nodeConfig.setExecutorServiceWorkers(workers);
// 创建一个Redisson Node实例
RedissonNode node = RedissonNode.create(nodeConfig);
// 或者通过指定的Redisson实例创建Redisson Node实例
RedissonNode node = RedissonNode.create(nodeConfig, redisson);
node.start();
node.shutdown();
三方框架整合
Spring框架整合
Spring Cache整合
Hibernate整合
Tomcat会话管理器(Tomcat Session Manager)
Spring Session会话管理器
三方框架-Spring整合
基本配置:
<redisson:client
id="myRedisson"> <redisson:single-server
address="127.0.0.1:6379"/> </redisson:client>
完全配置:
参照附件:Redisson说明文档.pdf
- 三方框架-Spring调用
@Service
public class RedissonUtils2 implements InitializingBean {
@Autowired
private RedissonClient
redissonClient;
public void afterPropertiesSet()
throws Exception {
Redisson redisson= (Redisson)
redissonClient;
RAtomicDouble dd=
redissonClient.getAtomicDouble("tt");
dd.set(1.22);
System.out.println("bean初始化后置方法"+redisson.getConfig().toJSON().toString());
}
}
总结
Redisson是redis分布式方向落地的产品,不仅开源免费,而且内置分布式锁,分布式服务等诸多功能,是基于redis实现分布式的最佳选择。
Redisson入门的更多相关文章
- Redisson教程
Redisson入门 Author:Ricky Date:2017-04-24 Redisson概述 Redisson是架设在Redis基础上的一个Java驻内存数据网格(In-Memory Dat ...
- linux系统下安装jdk,mysql,tomcat 和redis 和jedis入门案例
Day47笔记Linux+redis入门 Day47 知识讲解:Jedis 1.Linux上jdk,mysql,tomcat安装(看着文档安装) 准备工作: 因为JDK,TOMCAT,MYSQL的 ...
- 【Redis】349- Redis 入门指南
点击上方"前端自习课"关注,学习起来~ 1. 概述 1.1. Redis 简介 Redis 是速度非常快的非关系型(NoSQL)内存键值数据库,可以存储键和五种不同类型的值之间的映 ...
- redisson spring boot starter 做分布式锁
使用redisson做分布式锁 分布式锁 在java中单体应用中,我们如果想要保证一个接口或者服务.方法当下只有一个线程在运行,我们可以通过JDK提供的Lock.Semaphore.同步锁等多种方式实 ...
- 用了Redisson的Spring Boot Starter搞的我都想重写个
在对接一个小程序推送的框架时,需要将 access_token 存储到 Redis 中,框架中提供了存储逻辑,只需要将 RedissonClient 对象传进去即可. 框架内部在用 Redisson ...
- Redis入门到实战
一.Redis基础 Redis所有的命令都可以去官方网站查看 1.基本命令 keys * 查找所有符合给定模式pattern(正则表达式)的 key .可以进行模糊匹配 del key1,key2,. ...
- 一篇文章带你了解NoSql数据库——Redis简单入门
一篇文章带你了解NoSql数据库--Redis简单入门 Redis是一个基于内存的key-value结构数据库 我们会利用其内存存储速度快,读写性能高的特点去完成企业中的一些热门数据的储存信息 在本篇 ...
- Angular2入门系列教程7-HTTP(一)-使用Angular2自带的http进行网络请求
上一篇:Angular2入门系列教程6-路由(二)-使用多层级路由并在在路由中传递复杂参数 感觉这篇不是很好写,因为涉及到网络请求,如果采用真实的网络请求,这个例子大家拿到手估计还要自己写一个web ...
- ABP入门系列(1)——学习Abp框架之实操演练
作为.Net工地搬砖长工一名,一直致力于挖坑(Bug)填坑(Debug),但技术却不见长进.也曾热情于新技术的学习,憧憬过成为技术大拿.从前端到后端,从bootstrap到javascript,从py ...
随机推荐
- 网络安全实验室 注入关通关writeup
URL:http://hackinglab.cn 注入关 [1] 最简单的SQL注入username = admin' or ''='password随便什么都可以直接可以登录 [2] 熟悉注入环境 ...
- Vue学习之路---No.4(分享心得,欢迎批评指正)
这里说声抱歉,周末因为有其他事,没有更新博客,那么我们今天继续上周5的说. 老规矩,先回顾一下上一次的重点: 1.利用V-if和v-else来提到show()和hide(),同时要记住,v-else一 ...
- 1293: [SCOI2009]生日礼物
1293: [SCOI2009]生日礼物 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 1096 Solved: 584[Submit][Statu ...
- mybatis基础学习3---特殊sql语句(备忘)
1: 2: 3:resultMap的用法
- Spring使用注解进行事务的管理
使用步骤: 步骤一.在spring配置文件中引入<tx:>命名空间 <beans xmlns="http://www.springframework.org/schema/ ...
- Bootsrap 的 Carousel
一.简介 Carousel 就是指轮播图,这里 有完整的代码例子.它可以很简单的就构造出来,结构如下: div.carousel.slide[data-ride="carousel" ...
- (19)IO流之字符流FileReader和FileWriter,缓冲字符流---缓冲输入字符流BufferedReader和缓冲输出字符流BufferedWriter
字符流,读取的文件是字符的时候,有两个基类一个是Reader,一个是Writer这有点拟人的感觉,人直接看懂的是文字 字符流 字节流:读取的是文件中的二进制字节流并不会帮你转换成看的懂得字符 字符流: ...
- WinFrom中使用WPF的窗体
步骤 1.添加WindowsFormsIntegration.dll .System.Windows.Forms.和System.Xaml,PresentationCore.PresentationF ...
- Python 爬取qqmusic音乐url并批量下载
qqmusic上的音乐还是不少的,有些时候想要下载好听的音乐,但有每次在网页下载都是烦人的登录什么的.于是,来了个qqmusic的爬虫. 至少我觉得for循环爬虫,最核心的应该就是找到待爬元素所在ur ...
- docker使用Let’s Encrypt协议构建免费https协议
简介:我们可以把自己的image上传到dockerhub或者阿里云的docker镜像仓库,但在实际使用中我们很多时候都用的是自己的registry,便于内部的共享等等优点,docker镜像默认支持ht ...