jedis例子
@Test public void testDiscoverNodesAutomatically(){
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort("127.0.0.1",7379));
JedisCluster jc=new JedisCluster(jedisClusterNode);
assertEquals(3,jc.getClusterNodes().size());
}
@Test public void testCalculateConnectionPerSlot(){
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort("127.0.0.1",7379));
JedisCluster jc=new JedisCluster(jedisClusterNode);
jc.set("foo","bar");
jc.set("test","test");
assertEquals("bar",node3.get("foo"));
assertEquals("test",node2.get("test"));
}
@Test public void testRecalculateSlotsWhenMoved() throws InterruptedException {
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort("127.0.0.1",7379));
JedisCluster jc=new JedisCluster(jedisClusterNode);
int slot51=JedisClusterCRC16.getSlot("51");
node2.clusterDelSlots(slot51);
node3.clusterDelSlots(slot51);
node3.clusterAddSlots(slot51);
JedisClusterTestUtil.waitForClusterReady(node1,node2,node3);
jc.set("51","foo");
assertEquals("foo",jc.get("51"));
}
@Test public void testAskResponse() throws InterruptedException {
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort("127.0.0.1",7379));
JedisCluster jc=new JedisCluster(jedisClusterNode);
int slot51=JedisClusterCRC16.getSlot("51");
node3.clusterSetSlotImporting(slot51,JedisClusterTestUtil.getNodeId(node2.clusterNodes()));
node2.clusterSetSlotMigrating(slot51,JedisClusterTestUtil.getNodeId(node3.clusterNodes()));
jc.set("51","foo");
assertEquals("foo",jc.get("51"));
}
@Test(expected=JedisClusterException.class) public void testThrowExceptionWithoutKey(){
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort("127.0.0.1",7379));
JedisCluster jc=new JedisCluster(jedisClusterNode);
jc.ping();
}
@Test(expected=JedisClusterMaxRedirectionsException.class) public void testRedisClusterMaxRedirections(){
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort("127.0.0.1",7379));
JedisCluster jc=new JedisCluster(jedisClusterNode);
int slot51=JedisClusterCRC16.getSlot("51");
node2.clusterSetSlotMigrating(slot51,JedisClusterTestUtil.getNodeId(node3.clusterNodes()));
jc.set("51","foo");
}
@Test public void testClusterCountKeysInSlot(){
Set<HostAndPort> jedisClusterNode=new HashSet<HostAndPort>();
jedisClusterNode.add(new HostAndPort(nodeInfo1.getHost(),nodeInfo1.getPort()));
JedisCluster jc=new JedisCluster(jedisClusterNode);
for (int index=0; index < 5; index++) {
jc.set("foo{bar}" + index,"hello");
}
int slot=JedisClusterCRC16.getSlot("foo{bar}");
assertEquals(5,node1.clusterCountKeysInSlot(slot).intValue());
}
private void setSuperConnectionHandler(JedisClusterConnectionHandler handler){
try {
Field connectionHandlerField=JedisCluster.class.getDeclaredField("connectionHandler");
connectionHandlerField.setAccessible(true);
connectionHandlerField.set(this,handler);
}
catch ( Exception e) {
e.printStackTrace();
}
}
/**
* Store a job in Redis
* @param jobDetail the {@link JobDetail} object to be stored
* @param replaceExisting if true, any existing job with the same group and name as the given job will be overwritten
* @param jedis a thread-safe Redis connection
* @throws ObjectAlreadyExistsException
*/
@Override @SuppressWarnings("unchecked") public void storeJob(JobDetail jobDetail,boolean replaceExisting,JedisCluster jedis) throws ObjectAlreadyExistsException {
final String jobHashKey=redisSchema.jobHashKey(jobDetail.getKey());
final String jobDataMapHashKey=redisSchema.jobDataMapHashKey(jobDetail.getKey());
final String jobGroupSetKey=redisSchema.jobGroupSetKey(jobDetail.getKey());
if (!replaceExisting && jedis.exists(jobHashKey)) {
throw new ObjectAlreadyExistsException(jobDetail);
}
jedis.hmset(jobHashKey,(Map<String,String>)mapper.convertValue(jobDetail,new TypeReference<HashMap<String,String>>(){
}
));
if (jobDetail.getJobDataMap() != null && !jobDetail.getJobDataMap().isEmpty()) {
jedis.hmset(jobDataMapHashKey,getStringDataMap(jobDetail.getJobDataMap()));
}
jedis.sadd(redisSchema.jobsSet(),jobHashKey);
jedis.sadd(redisSchema.jobGroupsSet(),jobGroupSetKey);
jedis.sadd(jobGroupSetKey,jobHashKey);
}
/**
* Remove the given job from Redis
* @param jobKey the job to be removed
* @param jedis a thread-safe Redis connection
* @return true if the job was removed; false if it did not exist
*/
@Override public boolean removeJob(JobKey jobKey,JedisCluster jedis) throws JobPersistenceException {
final String jobHashKey=redisSchema.jobHashKey(jobKey);
final String jobDataMapHashKey=redisSchema.jobDataMapHashKey(jobKey);
final String jobGroupSetKey=redisSchema.jobGroupSetKey(jobKey);
final String jobTriggerSetKey=redisSchema.jobTriggersSetKey(jobKey);
Long delJobHashKeyResponse=jedis.del(jobHashKey);
jedis.del(jobDataMapHashKey);
jedis.srem(redisSchema.jobsSet(),jobHashKey);
jedis.srem(jobGroupSetKey,jobHashKey);
Set<String> jobTriggerSetResponse=jedis.smembers(jobTriggerSetKey);
jedis.del(jobTriggerSetKey);
Long jobGroupSetSizeResponse=jedis.scard(jobGroupSetKey);
if (jobGroupSetSizeResponse == 0) {
jedis.srem(redisSchema.jobGroupsSet(),jobGroupSetKey);
}
for ( String triggerHashKey : jobTriggerSetResponse) {
final TriggerKey triggerKey=redisSchema.triggerKey(triggerHashKey);
final String triggerGroupSetKey=redisSchema.triggerGroupSetKey(triggerKey);
unsetTriggerState(triggerHashKey,jedis);
jedis.srem(redisSchema.triggersSet(),triggerHashKey);
jedis.srem(redisSchema.triggerGroupsSet(),triggerGroupSetKey);
jedis.srem(triggerGroupSetKey,triggerHashKey);
jedis.del(triggerHashKey);
}
return delJobHashKeyResponse == 1;
}
/**
* Remove (delete) the <code> {@link Trigger}</code> with the given key.
* @param triggerKey the key of the trigger to be removed
* @param removeNonDurableJob if true, the job associated with the given trigger will be removed if it is non-durableand has no other triggers
* @param jedis a thread-safe Redis connection
* @return true if the trigger was found and removed
*/
@Override protected boolean removeTrigger(TriggerKey triggerKey,boolean removeNonDurableJob,JedisCluster jedis) throws JobPersistenceException, ClassNotFoundException {
final String triggerHashKey=redisSchema.triggerHashKey(triggerKey);
final String triggerGroupSetKey=redisSchema.triggerGroupSetKey(triggerKey);
if (!jedis.exists(triggerHashKey)) {
return false;
}
OperableTrigger trigger=retrieveTrigger(triggerKey,jedis);
final String jobHashKey=redisSchema.jobHashKey(trigger.getJobKey());
final String jobTriggerSetKey=redisSchema.jobTriggersSetKey(trigger.getJobKey());
jedis.srem(redisSchema.triggersSet(),triggerHashKey);
jedis.srem(triggerGroupSetKey,triggerHashKey);
jedis.srem(jobTriggerSetKey,triggerHashKey);
if (jedis.scard(triggerGroupSetKey) == 0) {
jedis.srem(redisSchema.triggerGroupsSet(),triggerGroupSetKey);
}
if (removeNonDurableJob) {
Long jobTriggerSetKeySizeResponse=jedis.scard(jobTriggerSetKey);
Boolean jobExistsResponse=jedis.exists(jobHashKey);
if (jobTriggerSetKeySizeResponse == 0 && jobExistsResponse) {
JobDetail job=retrieveJob(trigger.getJobKey(),jedis);
if (!job.isDurable()) {
removeJob(job.getKey(),jedis);
signaler.notifySchedulerListenersJobDeleted(job.getKey());
}
}
}
if (isNullOrEmpty(trigger.getCalendarName())) {
jedis.srem(redisSchema.calendarTriggersSetKey(trigger.getCalendarName()),triggerHashKey);
}
unsetTriggerState(triggerHashKey,jedis);
jedis.del(triggerHashKey);
return true;
}
/**
* Unsets the state of the given trigger key by removing the trigger from all trigger state sets.
* @param triggerHashKey the redis key of the desired trigger hash
* @param jedis a thread-safe Redis connection
* @return true if the trigger was removed, false if the trigger was stateless
* @throws JobPersistenceException if the unset operation failed
*/
@Override public boolean unsetTriggerState(String triggerHashKey,JedisCluster jedis) throws JobPersistenceException {
boolean removed=false;
List<Long> responses=new ArrayList<>(RedisTriggerState.values().length);
for ( RedisTriggerState state : RedisTriggerState.values()) {
responses.add(jedis.zrem(redisSchema.triggerStateKey(state),triggerHashKey));
}
for ( Long response : responses) {
removed=response == 1;
if (removed) {
jedis.del(redisSchema.triggerLockKey(redisSchema.triggerKey(triggerHashKey)));
break;
}
}
return removed;
}
/**
* Store a {@link Calendar}
* @param name the name of the calendar
* @param calendar the calendar object to be stored
* @param replaceExisting if true, any existing calendar with the same name will be overwritten
* @param updateTriggers if true, any existing triggers associated with the calendar will be updated
* @param jedis a thread-safe Redis connection
* @throws JobPersistenceException
*/
@Override public void storeCalendar(String name,Calendar calendar,boolean replaceExisting,boolean updateTriggers,JedisCluster jedis) throws JobPersistenceException {
final String calendarHashKey=redisSchema.calendarHashKey(name);
if (!replaceExisting && jedis.exists(calendarHashKey)) {
throw new ObjectAlreadyExistsException(String.format("Calendar with key %s already exists.",calendarHashKey));
}
Map<String,String> calendarMap=new HashMap<>();
calendarMap.put(CALENDAR_CLASS,calendar.getClass().getName());
try {
calendarMap.put(CALENDAR_JSON,mapper.writeValueAsString(calendar));
}
catch ( JsonProcessingException e) {
throw new JobPersistenceException("Unable to serialize calendar.",e);
}
jedis.hmset(calendarHashKey,calendarMap);
jedis.sadd(redisSchema.calendarsSet(),calendarHashKey);
if (updateTriggers) {
final String calendarTriggersSetKey=redisSchema.calendarTriggersSetKey(name);
Set<String> triggerHashKeys=jedis.smembers(calendarTriggersSetKey);
for ( String triggerHashKey : triggerHashKeys) {
OperableTrigger trigger=retrieveTrigger(redisSchema.triggerKey(triggerHashKey),jedis);
long removed=jedis.zrem(redisSchema.triggerStateKey(RedisTriggerState.WAITING),triggerHashKey);
trigger.updateWithNewCalendar(calendar,misfireThreshold);
if (removed == 1) {
setTriggerState(RedisTriggerState.WAITING,(double)trigger.getNextFireTime().getTime(),triggerHashKey,jedis);
}
}
}
}
/**
* Remove (delete) the <code> {@link Calendar}</code> with the given name.
* @param calendarName the name of the calendar to be removed
* @param jedis a thread-safe Redis connection
* @return true if a calendar with the given name was found and removed
*/
@Override public boolean removeCalendar(String calendarName,JedisCluster jedis) throws JobPersistenceException {
final String calendarTriggersSetKey=redisSchema.calendarTriggersSetKey(calendarName);
if (jedis.scard(calendarTriggersSetKey) > 0) {
throw new JobPersistenceException(String.format("There are triggers pointing to calendar %s, so it cannot be removed.",calendarName));
}
final String calendarHashKey=redisSchema.calendarHashKey(calendarName);
Long deleteResponse=jedis.del(calendarHashKey);
jedis.srem(redisSchema.calendarsSet(),calendarHashKey);
return deleteResponse == 1;
}
/**
* Get the keys of all of the <code> {@link Job}</code> s that have the given group name.
* @param matcher the matcher with which to compare group names
* @param jedis a thread-safe Redis connection
* @return the set of all JobKeys which have the given group name
*/
@Override public Set<JobKey> getJobKeys(GroupMatcher<JobKey> matcher,JedisCluster jedis){
Set<JobKey> jobKeys=new HashSet<>();
if (matcher.getCompareWithOperator() == StringMatcher.StringOperatorName.EQUALS) {
final String jobGroupSetKey=redisSchema.jobGroupSetKey(new JobKey("",matcher.getCompareToValue()));
final Set<String> jobs=jedis.smembers(jobGroupSetKey);
if (jobs != null) {
for ( final String job : jobs) {
jobKeys.add(redisSchema.jobKey(job));
}
}
}
else {
List<Set<String>> jobGroups=new ArrayList<>();
for ( final String jobGroupSetKey : jedis.smembers(redisSchema.jobGroupsSet())) {
if (matcher.getCompareWithOperator().evaluate(redisSchema.jobGroup(jobGroupSetKey),matcher.getCompareToValue())) {
jobGroups.add(jedis.smembers(jobGroupSetKey));
}
}
for ( Set<String> jobGroup : jobGroups) {
if (jobGroup != null) {
for ( final String job : jobGroup) {
jobKeys.add(redisSchema.jobKey(job));
}
}
}
}
return jobKeys;
}
jedis例子的更多相关文章
- Jedis 例子(demo)大全
第一步:到git下载jedis源码,如果你用maven或者gradle,那么直接下官方的即可,地址:https://github.com/xetorthio/jedis:如果你用ant,下载这个:ht ...
- Java中使用Jedis操作Redis(转载)
整理 1.字符串 添加:set keyname value 查询:get keyname 拼接:append keyname value 删除:del keyname 添加多个: mset keyna ...
- Redis客户端开发包:Jedis学习-高级应用
事务 Jedis中事务的写法是将redis操作写在事物代码块中,如下所示,multi与exec之间为具体的事务. jedis.watch (key1, key2, ...); Transaction ...
- Redis客户端开发包:Jedis学习-入门
添加Jedis依赖 我们可以使用以下三种方式来添加Jedis依赖. 1.下载jar文件 从http://search.maven.org/下载最近的jedis包和Apache Commons Pool ...
- redis linux 安装及jedis连接测试
一.安装配置 1:下载redis下载地址 http://code.google.com/p/redis/downloads/list推荐下载redis-1.2.6.tar.gz,之前这个版本同事已经有 ...
- Redis客户端之Spring整合Jedis,ShardedJedisPool集群配置
Jedis设计 Jedis作为推荐的java语言redis客户端,其抽象封装为三部分: 对象池设计:Pool,JedisPool,GenericObjectPool,BasePoolableObjec ...
- redis客户端--jedis
一.jedis jedis 是 redis推荐的java客户端.通过Jedis我们可以很方便地使用java代码的方式,对redis进行操作.jedis使用起来比较简单,它的操作方法与redis命令相类 ...
- Jedis下的ShardedJedis(分布式)使用方法(二)
上一篇中介绍了ShardedJedis的基本使用方法以及演示了一个简单的例子,在这一篇中我们来介绍了ShardedJedis的原理. 1.ShardedJedis内部实现 首先我们来看一下Sharde ...
- jedis操作redis全指南
package com.wujintao.redis; import java.util.Date; import java.util.HashMap; import java.util.Iterat ...
随机推荐
- BZOJ1012[JSOI2008]最大数maxnumber 题解
题目大意: 维护一个数列,有两种操作:1. 查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2.插入操作:将n加上t,其中t是最近一次查询操作的答案(如果还未执行 ...
- ACM: Find MaxXorSum 解题报告-字典树
Find MaxXorSum Time Limit:2000MS Memory Limit:65535KB 64bit IO Format: Description Given n non-negat ...
- [BZOJ1072][SCOI2007] 排列prem
Description 给一个数字串s和正整数d, 统计s有多少种不同的排列能被d整除(可以有前导0).例如123434有90种排列能被2整除,其中末位为2的有30种,末位为4的有60种. Input ...
- js动态创建的元素绑定事件
新创建的元素用传统的办法无法绑定,需要用live方法. 例: $('.rule').live('mouseover', function () { $(this).addClass("can ...
- Node.js 手册查询-1-核心模块方法
Node.js 学习手册 标签(空格分隔): node.js 模块 核心模块 核心模块是被编译成二进制代码,引用的时候只需require表示符即可 os 系统基本信息 os模块可提供操作系统的一些基本 ...
- poj 2325 Persistent Numbers
简单的贪心和高精度运算,主要还是要读懂题. #include"iostream" #include"stdio.h" #include"string& ...
- xss如何加载远程js的一些tips
在早期 , 对于xss我们是这样利用的 <script>window.open('http://xxx.xxx/cookie.asp?msg='+document.cookie)</ ...
- 2016HUAS暑假集训训练2 E - I Hate It
Description 很多学校流行一种比较的习惯.老师们很喜欢询问,从某某到某某当中,分数最高的是多少.这让很多学生很反感. 不管你喜不喜欢,现在需要你做的是,就是按照老师的要求,写一个程序,模拟老 ...
- JQ 队列
<div class="divtt"> <div class="divtest"></div> </div> & ...
- pt-table-checksum使用实践
在工作中接触最多的就是mysql replication,由于现在公司也还在使用mysql 5.1.x版本,在复制方面还是比较多的问题,比如主库宕机或者从库宕机都会导致复制中断,通常我们需要进行人为修 ...