Hazelcast入门指南第7部分

这是解释如何使用Hazelcast的系列文章的续篇。 如果一个人没有阅读其他六个帖子,请转到目录并阅读其他帖子。

不同的地图种类

Hazelcast的MultiMap打破了以前使用java.util.Collection接口的常规方式。 实际上,在我看来,MultiMap的概念完全打破了地图的概念。 当法线贴图将一个键关联到一个值时,MultiMap可以将多个值映射到同一键 。 这是一个非常重要的概念,同一键有多个值。 值可以存储在两个不同的集合(集合或列表)中。 这些集合的行为类似于java.util.Collections库的集合。

安全吗?

MultiMap有一种疯狂的方法。 在法线映射中,每个键可以存储多个值,但必须手动完成。 这意味着将集合从存储中取出,进行任何更改,然后将集合放回存储中。 这对于线程安全可能是有问题的,因为先前的步骤需要原子完成,或者存在其他线程读取陈旧或不一致的数据的可能性。 MultiMaps通过提供以下服务来帮助解决此问题:

  • 可以通过一次put操作添加一个值。
  • 一个人可以用钥匙锁定一个条目。 这是关键(双关语),因为这意味着开发人员不必跟踪每个条目的单独锁。

这个示例有些不同,因为在运行示例时,我使用Maven的failsafe插件作为主要引擎。 是的,我写了两个示例,因为我想展示使用MultiMap的两种不同方式。 一种方法是,每个线程都拥有自己的游乐场,被分配一个唯一的密钥,或被分配一个共享的游乐场,或者所有线程共享相同的密钥。 这也是如何将Hazelcast的IdGenerator用作在应用程序中创建线程安全性的方法的示例。

Pom文件

请记住,此示例代码利用了Apache的Failsafe Maven插件 。 故障安全插件通过在第一次失败时不终止构建来帮助进行自动集成测试。 它是surefire插件的分支。 我也一直在尝试使用Maven提供的报告。 在命令行中输入“ mvn site”,它将生成一个网站。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0><groupId>com.darylmathison><artifactId>hazelcast-multimap-example><version>1.0-SNAPSHOT><description>Examples of using Hazelcast Multimap><developers><developer><name>Daryl Mathison><id>dmathison><roles><role>developer>>>><scm><connection>scm:git:https://github.com/darylmathison/hazelcast-multimap-example.git><url>https://github.com/darylmathison/hazelcast-multimap-example>><properties><maven.compiler.source>1.8><maven.compiler.target>1.8><project.build.sourceEncoding>UTF-8>><dependencies><dependency><groupId>com.hazelcast><artifactId>hazelcast><version>3.4.2>><dependency><groupId>junit><artifactId>junit><version>4.12><scope>test>>><build><plugins><plugin><groupId>org.apache.maven.plugins><artifactId>maven-failsafe-plugin><version>2.18.1><executions><execution><goals><goal>integration-test><goal>verify>>>>>>><reporting><plugins><plugin><groupId>org.apache.maven.plugins><artifactId>maven-project-info-reports-plugin><version>2.7><reportSets><reportSet><reports><report>dependencies><report>index><report>project-team><report>scm>>>>><plugin><groupId>org.apache.maven.plugins><artifactId>maven-javadoc-plugin><version>2.10.3><reportSets><reportSet><reports><report>javadoc><report>test-javadoc>>>>><plugin><groupId>org.apache.maven.plugins><artifactId>maven-surefire-report-plugin><version>2.18.1>><plugin><groupId>org.apache.maven.plugins><artifactId>maven-jxr-plugin><version>2.5><configuration><linkJavadoc>true>><reportSets><reportSet><reports><report>jxr><report>test-jxr>>>>>>>
>

MultimapAccessThread

这是每个访问类型线程的基类。

package com.darylmathison.multimap;import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.HazelcastInstanceAware;
import com.hazelcast.core.MultiMap;import java.io.Serializable;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;/*** Abstract class to access MultiMap.*/
public abstract class MultiMapAccessThread implements Serializable, Runnable, HazelcastInstanceAware {protected com.hazelcast.core.HazelcastInstance instance;protected MultiMap<Long, Long> map;protected String mapName;protected Lock l = new ReentrantLock();public void setHazelcastInstance(HazelcastInstance instance) {l.lock();try {this.instance = instance;if (mapName != null && !mapName.isEmpty()) {map = instance.getMultiMap(mapName);}} finally {l.unlock();}}public String getMapName() {return mapName;}public void setMapName(String mapName) {l.lock();try {this.mapName = mapName;} finally {l.unlock();}}
}

IdMultiMapAccessThread

package com.darylmathison.multimap;/*** This thread accesses only one "slot" in a multimap.*/
public class IdMultiMapAccessThread extends MultiMapAccessThread {private Long id;@Overridepublic void run() {l.lock();boolean shouldRun = (map != null && id != null);l.unlock();if(shouldRun) {for (long i = 0; i < 10; i++) {map.put(id, i);}}}public Long getId() {return id;}public void setId(Long id) {this.id = id;}
}

GroupMultiMapAccessThread

package com.darylmathison.multimap;/*** Thread designed to share the same "slot" on a MultiMap.*/
public class GroupMultiMapAccessThread extends MultiMapAccessThread {private static final long MAX = 10;private Long groupId;/*** When an object implementing interface Runnable is used* to create a thread, starting the thread causes the object's* run method to be called in that separately executing* thread.*
* The general contract of the method run is that it may* take any action whatsoever.** @see Thread#run()*/@Overridepublic void run() {l.lock();boolean shouldRun = (groupId != null && map != null);l.unlock();if(shouldRun) {map.lock(groupId);try {if (map.get(groupId).isEmpty()) {System.out.println("adding to list");for (long i = 0; i < MAX; i++) {map.put(groupId, i);}} else {System.out.println("nothing to add");}} finally {map.unlock(groupId);}}}public void setGroupId(Long groupId) {l.lock();this.groupId = groupId;l.unlock();}
}

HazelcastInstanceResource

此规则启动并关闭运行线程所需的Hazelcast实例。

package com.darylmathison.multimap.test.rule;import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IExecutorService;
import org.junit.rules.ExternalResource;/*** Created by Daryl on 4/27/2015.*/
public class HazelcastInstanceResource extends ExternalResource {public static final String SERVICE_NAME = "Charlotte";HazelcastInstance instance;IExecutorService service;@Overrideprotected void before() throws Throwable {super.before();instance = Hazelcast.newHazelcastInstance();service = instance.getExecutorService(SERVICE_NAME);}@Overrideprotected void after() {super.after();service.shutdown();instance.shutdown();}public HazelcastInstance getInstance() {return instance;}public IExecutorService getService() {return service;}
}

IdMultiMapAccessIT

这是一个使用IdGenerator为线程放置数据的新“操场”或键的示例。

package com.darylmathison.multimap;import com.darylmathison.multimap.test.rule.HazelcastInstanceResource;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IExecutorService;
import com.hazelcast.core.IdGenerator;
import org.junit.ClassRule;
import org.junit.Test;import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;/*** Integration test for IdMultiMapAccessThread*/
public class IdMultiMapAccessThreadIT {public static final String MAP_NAME = "idAccessMap";public static final String GEN_NAME = "singleAccess";public static final int NUM_THREADS = 10;@ClassRulepublic static HazelcastInstanceResource hazelcastInstanceResource = new HazelcastInstanceResource();@Testpublic void testIdThreads() {List threads = generateThreads(hazelcastInstanceResource.getInstance());List<Future<?>> futures = new ArrayList<>(NUM_THREADS);IExecutorService spinner = hazelcastInstanceResource.getService();for(IdMultiMapAccessThread thread: threads) {futures.add(spinner.submit(thread));}for(Future<?> future: futures) {try {future.get();} catch (InterruptedException | ExecutionException e) {e.printStackTrace();}}}private List generateThreads(HazelcastInstance instance) {IdGenerator gen = instance.getIdGenerator(GEN_NAME);List threads = new ArrayList<>(NUM_THREADS);for(int i = 0; i < NUM_THREADS; i++) {IdMultiMapAccessThread thread = new IdMultiMapAccessThread();thread.setMapName(MAP_NAME);thread.setId(gen.newId());threads.add(thread);}return threads;}
}

GroupMultiMapAccessThreadIT

这是使用IdGenerator创建共享游乐场或插槽的示例。

package com.darylmathison.multimap;import com.darylmathison.multimap.test.rule.HazelcastInstanceResource;
import com.hazelcast.core.IExecutorService;
import com.hazelcast.core.IdGenerator;
import org.junit.ClassRule;
import org.junit.Test;import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;/*** GroupMultiMapAccessThread Integration Test*/
public class GroupMultiMapAccessThreadIT {public static final int NUM_THREADS = 10;public static final String GEN_NAME = "groupIdGenerator";public static final String MAP_NAME = "groupMap";@ClassRulepublic static HazelcastInstanceResource hazelcastInstanceResource = new HazelcastInstanceResource();@Testpublic void testGroupMultiMapAccessThread() {List threads = createThreads();IExecutorService service = hazelcastInstanceResource.getService();List<Future<?>> futures = new ArrayList<>(NUM_THREADS);for(GroupMultiMapAccessThread thread: threads) {futures.add(service.submit(thread));}for(Future<?> future: futures) {try {future.get();} catch (InterruptedException | ExecutionException e) {e.printStackTrace();}}}private List createThreads() {List ret = new ArrayList<>(NUM_THREADS);IdGenerator gen = hazelcastInstanceResource.getInstance().getIdGenerator(GEN_NAME);Long groupId = gen.newId();for(int i = 0; i < NUM_THREADS; i++) {GroupMultiMapAccessThread thread = new GroupMultiMapAccessThread();thread.setMapName(MAP_NAME);thread.setGroupId(groupId);ret.add(thread);}return ret;}
}

结论

在这篇文章中,介绍了Hazelcast的MultiMap。 结果表明,MultiMaps可以为给定键存储多个值。 还显示了线程如何使用IdGenerator作为可能的密钥生成器在MultiMap中共享数据或如何为其自身存储数据。 该代码可以在GitHub的此处找到。

参考文献

  • http://www.hazelcast.com
  • http://www.hazelcast.org
  • https://github.com/hazelcast/hazelcast

翻译自: https://www.javacodegeeks.com/2015/04/beginners-guide-to-hazelcast-part-7.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/360344.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JS将指定的时间戳转为UTC时间

Js中获取时间戳可用var dayMiliseconds parseInt(new Date().valueOf());Js的时间戳单位为毫秒&#xff08;1s 1000 ms&#xff09;,下面是一个将制定的格式转化成UTC时间的函数。 //format the date string from webservice to UTC time; function toUTCtime(dateStr) {//Da…

02365计算机软件基础,自考02365《计算机软件基础(二)》习题解答.pdf

1。互交机人了便方 &#xfffd;口接的间之统系机算计和户用为作还统系作操时同 &#xfffd;理管的源资类四等件文 &#xfffd;备设O/I &#xfffd;器储存 &#xfffd;机理处对现实 &#xfffd;源资件软 、件硬的机算计理管和制控统系作操 &#xfffd;】答解【&#xfff…

window xp系统安装php环境_Windows Server 2003及XP系统如何安装SQL Server 2000数据库?

年头年初节假日就是小编的梗&#xff0c;忙得不可开交&#xff0c;这不越冷越刮风昨天服务器又崩了&#xff0c;折腾了一天安装好Windows Server 2003和IIS(这系统是有点老了&#xff0c;主要是单位机子和各系统也有点年头了&#xff0c;没办法)&#xff0c;做好各项配置后总算…

REST服务的自动化测试

尽管我是Java和Scala开发人员&#xff0c;但我仍然对软件测试充满热情。 如果更精确-Web应用程序。 开发Web应用程序并确保应用程序具有良好的质量真的很有趣。 当我开始职业生涯时&#xff0c;最受欢迎的Web架构是MVC&#xff08;模型视图控件&#xff09;&#xff0c;并且非…

iOS 为tableview添加新的cell类

网址&#xff1a;http://www.howzhi.com/group/iosDevelop/discuss/2068转载于:https://www.cnblogs.com/liukunyang/p/3363881.html

怎么写计算机教学论文,如何写好一篇关于信息技术教育的论文

论文是一个汉语词语&#xff0c;拼音是ln wn&#xff0c;古典文学常见论文一词&#xff0c;谓交谈辞章或交流思想。当代&#xff0c;论文常用来指进行各个学术领域的研究和描述学术研究成果的文章&#xff0c;简称之为论文。今天小编给大家以信息技术教育为题的论文模板&#x…

JAXB做错了; 尝试Xembly

JAXB是一项具有10年历史的Java技术&#xff0c;它使我们能够将Java对象转换为XML文档&#xff08;编组&#xff09;并返回&#xff08;取消编组&#xff09;。 我认为这项技术基于setter和getter&#xff0c;并且通过将对象转换为被动数据结构而违反了面向对象编程的关键原理。…

rnn神经网络 层次_精讲深度学习RNN三大核心点,三分钟掌握循环神经网络

每天给小编五分钟&#xff0c;小编用自己的代码&#xff0c;让你轻松学习人工智能。本文将剖析循环神经网络(RNN)的工作原理&#xff0c;精讲循环神经网络的特点和实现方式。野蛮智能&#xff0c;小白也能看懂的人工智能。循环神经网络从何而来&#xff1f;我在我的这篇文章介绍…

我的偶像特质

1、泰国英拉&#xff1a;谦和品质&#xff0c;诚实&#xff0c;隐忍&#xff0c;有外交风范。 此前默默无闻的英拉依靠选举机器与个人魅力的完美协作&#xff0c;英拉完成了从女高管到女总理的身份飞越。 对手&#xff1a;“英拉从未利用媒体攻击商业对手&#xff0c;而是尽量避…

摆脱匿名类

我真的很喜欢编写和阅读lambda表达式-它们简洁&#xff0c;富于表现力和时尚&#xff08;来吧&#xff0c;这样就没关系了&#xff01;&#xff09;。 将此与匿名类进行比较。 这就是为什么我喜欢摆脱它们&#xff01; 在过去的几个月中&#xff0c;这种认识慢慢地实现了&…

惠普自动化测试软件官网,惠普最新测试管理工具 HP ALM 11.0 详细介绍

惠普应用生命周期管理(HPalm/" target"_blank" >ALM11)是业界首款集成的、跨技术和流程、可拓展的平台&#xff0c;使IT能够管理应用生命周期&#xff0c;并且从项目建议到运营全过程中贯穿应用交付。在拓展惠普软件应用组合(HPSoftwareApplicationsportfoli…

poj 题目分类(3)

OJ上的一些水题(可用来练手和增加自信) (poj3299,poj2159,poj2739,poj1083,poj2262,poj1503,poj3006,poj2255,poj3094) 初期: 一.基本算法: (1)枚举. (poj1753,poj2965) (2)贪心(poj1328,poj2109,poj2586) (3)递归和分治法. (4)递推. (5)构造法.(poj329…

ARM学习(24)Can的高阶认识和错误处理

笔者来聊一下CAN协议帧的认识和错误处理。 1、CAN协议帧认识 CAN 差分信号&#xff0c;是经过CAN收发器转成差分信号的&#xff0c;CAN RX和TX是逻辑电平。CAN的基础知识&#xff0c;可参考笔者这边文章&#xff1a;ARM学习&#xff08;21&#xff09;STM32 外设Can的认识与驱…

云桌面 瘦终端_小米盒子连接Citrix云桌面

先前看到很多公司使用Wyse、Hp等瘦终端设备登陆Citrix云桌面&#xff0c;便想购得一台瘦终端设备&#xff0c;想来只是为了测试&#xff0c;况且瘦终端价格不低&#xff0c;便一直未买。后使用自己的平板连接Citrix XenDesktop创建的Win7桌面&#xff0c;感觉效果很好&#xff…

Apache Mesos + Marathon和Java EE

Apache Mesos是一个开放源代码群集管理器&#xff0c;可在分布式应用程序或框架之间提供有效的资源隔离和共享。 Apache Mesos从计算机&#xff08;物理或虚拟&#xff09;上提取CPU&#xff0c;内存&#xff0c;存储和其他计算资源&#xff0c;从而使容错和弹性的分布式系统易…

计算机指令中数据寻址的方式,1.变址寻址需要在指令中提供一个寄存器编号和一个数值。 2.计算机的指令越多,功能越强越好。 3.程序计数...

满意答案happysk72推荐于 2017.12.16采纳率&#xff1a;57% 等级&#xff1a;12已帮助&#xff1a;21199人1.对变址寻址就是将寄存器(该寄存器一般称作基址寄存器)的内容与指令中给出的地址偏移量相加&#xff0c;从而得到一个操作数的有效地址。变址寻址方式常用于访问某基…

tab切换-自动、点击、内容变换

<div class"tab"> <ul class"pics"> <li><a href""><img src"images/pic2.jpg" width"448" height"315" alt"宝业大和工业化住宅制造…

在JAX-RS中使用@Context [第1部分]

JAX-RS提供Context批注&#xff0c;以在RESTful服务中注入各种资源。 一些最常用的注入组件是HTTP标头&#xff0c;HTTP URI相关信息。 这是完整列表&#xff08;无特定顺序&#xff09; HTTP标头 HTTP URI详细信息 安全上下文 资源上下文 请求 组态 应用 提供者 让我…

babel原理_带你了解 snowpack 原理,你还学得动么(下)

作者&#xff1a;AlienZHOU转发链接&#xff1a;https://zhuanlan.zhihu.com/p/149351900目录带你了解 snowpack 原理&#xff0c;你还学得动么(上)带你了解 snowpack 原理&#xff0c;你还学得动么(下)本篇小编建议小伙们从第一篇开始&#xff0c;按照顺序来看&#xff0c;更清…

测试社交软件有哪些,性格测试:测你适合哪个社交平台

你喜欢通过什么方式和人交流&#xff1f;随着网络世界越来越发达&#xff0c;人们越来越倾向于使用社交工具来维系与家人、朋友、同事之间的关系。不但在现实生活中不好直接表达出来的话通过网上交流的方式可以顺畅地表达出来&#xff0c;而且也节约了时间上的成本&#xff0c;…