Atitit redis使用 attilax 艾提拉总结
扫描二维码
随时随地手机看文章
Atitit redis使用 attilax 艾提拉总结
1.1. Redis默认有16个库,默认连接的是 index=0 的那一个。解决与原来不方便查询查看的问题 1
1.2. redis不是现场安全的,可以使用thradlocal隔离开 1
1.3. 设置文件夹模式,把key做package命名即可。 2
1.4. 可视化工具 redis desktop manager,,,redisstudio ..rdm的更好些。。 2
1.1. Redis默认有16个库,默认连接的是 index=0 的那一个。解决与原来不方便查询查看的问题
这16个库互相之间是独立的。类似于同一MySQL服务器里面的多个数据库。
1.2. redis不是现场安全的,可以使用thradlocal隔离开
package com.attilax.cache;
import java.util.Iterator;
import java.util.Set;
import redis.clients.jedis.Jedis;
public class RedisJava {
public static void main(String[] args) {
//连接本地的Redis 服务
Jedis jedis = new Jedis("192.168.1.18");
jedis.auth("cnhis");// password
System.out.println("连接成功");
//查看服务是否运行
System.out.println("服务正在运行: "+jedis.ping());
jedis.set("attilax.key1", "val1");
// 获取数据并输出
Set
Iterator
while(it.hasNext()){
String key = it.next();
System.out.println(key);
System.out.println(jedis.get(key));
}
}
}
1.3. 设置文件夹模式,把key做package命名即可。
1.4. 可视化工具 redis desktop manager,,,redisstudio ..rdm的更好些。。
Rs的读取器不到mybatis的key,因为死序列号话的,不只是asni字符。。
0
use timed:0
2018-04-18 20:41:30,543 INFO [com.cnhis.onehis.MybatisUtil] -
2018-04-18 20:41:30,544 DEBUG [com.cnhis.cloudhealth.clinical.util.cache.MybatisRedisCache] - <>>>>>>>>>>>>>>>>>>>>>>>>getObject key:-1444578844:-590811772:CliSendAdvice.getParameter:0:2147483647:select GetSysParamValue(?,?,?) param:9999:9999:12 ,val:[0]>
0
use timed:0
2018-04-18 20:41:30,545 INFO [com.cnhis.onehis.MybatisUtil] -
2018-04-18 20:41:30,546 DEBUG [com.cnhis.cloudhealth.clinical.util.cache.MybatisRedisCache] - <>>>>>>>>>>>>>>>>>>>>>>>>getObject key:-1444578844:-590811772:CliSendAdvice.getParameter:0:2147483647:select GetSysParamValue(?,?,?) param:9999:9999:12 ,val:[0]>
0
use timed:0
2018-04-18 20:41:30,546 INFO [com.cnhis.onehis.MybatisUtil] -
2018-04-18 20:41:30,548 DEBUG [com.cnhis.cloudhealth.clinical.util.cache.MybatisRedisCache] - <>>>>>>>>>>>>>>>>>>>>>>>>getObject key:-1444578844:-590811772:CliSendAdvice.getParameter:0:2147483647:select GetSysParamValue(?,?,?) param:9999:9999:12 ,val:[0]>
0
use timed:0
2018-04-18 20:41:30,549 INFO [com.cnhis.onehis.MybatisUtil] -
2018-04-18 20:41:30,550 DEBUG [com.cnhis.cloudhealth.clinical.util.cache.MybatisRedisCache] - <>>>>>>>>>>>>>>>>>>>>>>>>getObject key:-1444578844:-590811772:CliSendAdvice.getParameter:0:2147483647:select GetSysParamValue(?,?,?) param:9999:9999:12 ,val:[0]>
0
use timed:0
--f
那么在spring之中怎么配置呢?
当然,可以使用 RedisConnectionCommands 来进行手工切换:
redisConnection.select(6);