• Redisson入门

    Author:Ricky  Date:2017-04-24

  • Redisson概述

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

  Redisson始于2013年12月22日,至今已有三年多的发展,日趋成熟。

  地址:https://github.com/redisson/redisson

适用场景

  分布式应用,分布式缓存,分布式回话管理,分布式服务(任务,延迟任务,执行器),分布式redis客户端

案例

  百度、NetFlix等都在使用。

  • 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个片段。

目前支持的数据结构类型包括SetMap.

分布式对象

通用对象桶(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教程的更多相关文章

  1. Java使用Redis实现分布式锁来防止重复提交问题

    如何用消息系统避免分布式事务? - 少年阿宾 - BlogJavahttp://www.blogjava.net/stevenjohn/archive/2018/01/04/433004.html [ ...

  2. redisson整合spring

    转: redisson整合spring 转: 原文:http://blog.csdn.net/wang_keng/article/details/73549274 首先讲下什么是Redisson:Re ...

  3. 一站式SpringBoot for NoSQL Study Tutorial 开发教程学习手册

    SpringBoot2.0 + NoSQL使用教程,项目名称:“SpringBoot2NoSQL” 项目地址: https://gitee.com/475660/SpringBoot2NoSQL 项目 ...

  4. Redis之快速入门与应用[教程/总结]

    内容概要 因为项目中用户注册发送验证码,需要学习redis内存数据库,故而下午花了些时间进行初步学习.本博文性质属于对今日redis学习内容的小结.在看本博文前或者看完后,可以反问自己三个问题:Red ...

  5. 分布式锁中的王者方案-Redisson

    上篇讲解了如何用 Redis 实现分布式锁的五种方案,但我们还是有更优的王者方案,就是用 Redisson. 缓存系列文章: 缓存实战(一):20 图 |6 千字|缓存实战(上篇) 缓存实战(二):R ...

  6. Redisson源码解读-分布式锁

    前言 Redisson是一个在Redis的基础上实现的Java驻内存数据网格(In-Memory Data Grid).Redisson有一样功能是可重入的分布式锁.本文来讨论一下这个功能的特点以及源 ...

  7. Angular2入门系列教程7-HTTP(一)-使用Angular2自带的http进行网络请求

    上一篇:Angular2入门系列教程6-路由(二)-使用多层级路由并在在路由中传递复杂参数 感觉这篇不是很好写,因为涉及到网络请求,如果采用真实的网络请求,这个例子大家拿到手估计还要自己写一个web ...

  8. Angular2入门系列教程6-路由(二)-使用多层级路由并在在路由中传递复杂参数

    上一篇:Angular2入门系列教程5-路由(一)-使用简单的路由并在在路由中传递参数 之前介绍了简单的路由以及传参,这篇文章我们将要学习复杂一些的路由以及传递其他附加参数.一个好的路由系统可以使我们 ...

  9. Angular2入门系列教程5-路由(一)-使用简单的路由并在在路由中传递参数

    上一篇:Angular2入门系列教程-服务 上一篇文章我们将Angular2的数据服务分离出来,学习了Angular2的依赖注入,这篇文章我们将要学习Angualr2的路由 为了编写样式方便,我们这篇 ...

随机推荐

  1. python-创建一个登录判断的函数

    方法一def account_login(): password = input('Password:') if password == '12345': print('Login success!' ...

  2. pandas drop_duplicates

    函数 : DataFrame.drop_duplicates(subset=None, keep='first', inplace=False) 参数:这个drop_duplicate方法是对Data ...

  3. javascirpt 用英文逗号替换英文分号、中英文逗号或者回车

    function ReplaceSeperator(mobiles) { var i; var result = ""; var c; for (i = 0; i < mob ...

  4. Java分布式 一些概念理解

    转至 java那些事 2017-02-09  有些朋友工作一年了觉得该深入一下子了,所以想深入学习一下以提升自己的专业技能,想问一下如何入门Java分布式应用,学习过程大致是怎么样的,涉及到那些知识, ...

  5. List 通过 Collections.binarySearch 进行记录筛选

    1. Collections.sort(list, new Comparator<TreeDto>() { @Override public int compare(TreeDto a2, ...

  6. iOS开发多线程篇 04 —线程间的通信

    iOS开发多线程篇—线程间的通信 一.简单说明 线程间通信:在1个进程中,线程往往不是孤立存在的,多个线程之间需要经常进行通信 线程间通信的体现 1个线程传递数据给另1个线程 在1个线程中执行完特定任 ...

  7. 日期在苹果手机上显示NaN的处理方法

    注意两点即可: 1.苹果只认识 yyyy/mmmm/dddd/  这类格式的日期 2.如果输出后还要进行处理日期对比,苹果默认会带中文字,如:年月日,需要转成上面1当中的日期格式在转时间戳进行比较 G ...

  8. IntelliJ IDEA代码编码区提示库源不匹配字节码解决办法

    在使用IntelliJ IDEA进行开发时,可能会在代码编辑区出现此提示:library source does not match the bytecode for class HelloWorld ...

  9. uGUI ScrollView

    Scroll View + Grid Layout Group 滑动列表,与NGUI类似 ScrollView上所需组件:Scroll Rect + Mask + Image.Scroll Rect指 ...

  10. linux 文件夹的颜色代表什么意思

    linux 文件夹的颜色代表什么意思 绿色 蓝色 黑色代表什么意思 蓝色表示目录: 绿色表示可执行文件: 红色表示压缩文件: 浅蓝色表示链接文件: 灰色表示其它文件: 红色闪烁表示链接的文件有问题了: ...