RedisUtil.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. package com.bootdo.common.utils;
  2. import org.springframework.data.redis.core.RedisTemplate;
  3. import org.springframework.data.redis.support.atomic.RedisAtomicLong;
  4. import java.util.List;
  5. import java.util.Map;
  6. import java.util.Set;
  7. import java.util.concurrent.TimeUnit;
  8. /**
  9. * redis工具
  10. */
  11. public class RedisUtil {
  12. private RedisTemplate<String, Object> redisTemplate;
  13. public void setRedisTemplate(RedisTemplate<String, Object> redisTemplate) {
  14. this.redisTemplate = redisTemplate;
  15. }
  16. //=============================common============================
  17. /**
  18. * 指定缓存失效时间
  19. * @param key 键
  20. * @param time 时间(秒)
  21. * @return
  22. */
  23. public boolean expire(String key,long time){
  24. try {
  25. if(time>0){
  26. redisTemplate.expire(key, time, TimeUnit.SECONDS);
  27. }
  28. return true;
  29. } catch (Exception e) {
  30. e.printStackTrace();
  31. return false;
  32. }
  33. }
  34. /**
  35. * 根据key 获取过期时间
  36. * @param key 键 不能为null
  37. * @return 时间(秒) 返回0代表为永久有效
  38. */
  39. public long getExpire(String key){
  40. return redisTemplate.getExpire(key,TimeUnit.SECONDS);
  41. }
  42. /**
  43. * 判断key是否存在
  44. * @param key 键
  45. * @return true 存在 false不存在
  46. */
  47. public boolean hasKey(String key){
  48. try {
  49. return redisTemplate.hasKey(key);
  50. } catch (Exception e) {
  51. e.printStackTrace();
  52. return false;
  53. }
  54. }
  55. /**
  56. * 删除缓存
  57. * @param key 可以传一个值 或多个
  58. */
  59. @SuppressWarnings("unchecked")
  60. public void del(String key){
  61. redisTemplate.delete(key);
  62. }
  63. //============================String=============================
  64. /**
  65. * 普通缓存获取
  66. * @param key 键
  67. * @return 值
  68. */
  69. public Object get(String key){
  70. return key==null?null:redisTemplate.opsForValue().get(key);
  71. }
  72. /**
  73. * 普通缓存获取并刷新过期时间
  74. * @param key 键
  75. * @return 值
  76. */
  77. public Object getAndRefresh(String key,Long seconds){
  78. Object object = key==null?null:redisTemplate.opsForValue().get(key);
  79. try {
  80. redisTemplate.opsForValue().set(key, object,seconds,TimeUnit.SECONDS);
  81. } catch (Exception e) {
  82. e.printStackTrace();
  83. }
  84. return object;
  85. }
  86. /**
  87. * 普通缓存放入
  88. * @param key 键
  89. * @param value 值
  90. * @return true成功 false失败
  91. */
  92. public boolean set(String key,Object value) {
  93. try {
  94. redisTemplate.opsForValue().set(key, value);
  95. return true;
  96. } catch (Exception e) {
  97. e.printStackTrace();
  98. return false;
  99. }
  100. }
  101. /**
  102. * 普通缓存放入并设置时间
  103. * @param key 键
  104. * @param value 值
  105. * @param time 时间(秒) time要大于0 如果time小于等于0 将设置无限期
  106. * @return true成功 false 失败
  107. */
  108. public boolean set(String key,Object value,long time){
  109. try {
  110. if(time>0){
  111. redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
  112. }else{
  113. set(key, value);
  114. }
  115. return true;
  116. } catch (Exception e) {
  117. e.printStackTrace();
  118. return false;
  119. }
  120. }
  121. /**
  122. * 使用Redis生成全局唯一自增ID
  123. */
  124. public long generate(String key) {
  125. RedisAtomicLong redisAtomicLong = new RedisAtomicLong(key, redisTemplate.getConnectionFactory());
  126. return redisAtomicLong.incrementAndGet();
  127. }
  128. /**
  129. * 递增
  130. * @param key 键
  131. * @param delta 要增加几(大于0)
  132. * @return
  133. */
  134. public long incr(String key, long delta){
  135. if(delta<0){
  136. throw new RuntimeException("递增因子必须大于0");
  137. }
  138. return redisTemplate.opsForValue().increment(key, delta);
  139. }
  140. /**
  141. * 递减
  142. * @param key 键
  143. * @param delta 要减少几(小于0)
  144. * @return
  145. */
  146. public long decr(String key, long delta){
  147. if(delta<0){
  148. throw new RuntimeException("递减因子必须大于0");
  149. }
  150. return redisTemplate.opsForValue().increment(key, -delta);
  151. }
  152. //================================Map=================================
  153. /**
  154. * HashGet
  155. * @param key 键 不能为null
  156. * @param item 项 不能为null
  157. * @return 值
  158. */
  159. public Object hget(String key,String item){
  160. return redisTemplate.opsForHash().get(key, item);
  161. }
  162. /**
  163. * 获取所有的值
  164. * @param key
  165. * @return
  166. */
  167. public List<Object> hgetValues(String key){
  168. return redisTemplate.opsForHash().values(key);
  169. }
  170. /**
  171. * 获取hashKey对应的所有键值
  172. * @param key 键
  173. * @return 对应的多个键值
  174. */
  175. public Map<Object,Object> hmget(String key){
  176. return redisTemplate.opsForHash().entries(key);
  177. }
  178. /**
  179. *
  180. *
  181. * HashSet
  182. * @param key 键
  183. * @param map 对应多个键值
  184. * @return true 成功 false 失败
  185. */
  186. public boolean hmset(String key, Map<String,Object> map){
  187. try {
  188. redisTemplate.opsForHash().putAll(key, map);
  189. return true;
  190. } catch (Exception e) {
  191. e.printStackTrace();
  192. return false;
  193. }
  194. }
  195. /**
  196. * HashSet 并设置时间
  197. * @param key 键
  198. * @param map 对应多个键值
  199. * @param time 时间(秒)
  200. * @return true成功 false失败
  201. */
  202. public boolean hmset(String key, Map<String,Object> map, long time){
  203. try {
  204. redisTemplate.opsForHash().putAll(key, map);
  205. if(time>0){
  206. expire(key, time);
  207. }
  208. return true;
  209. } catch (Exception e) {
  210. e.printStackTrace();
  211. return false;
  212. }
  213. }
  214. /**
  215. * 向一张hash表中放入数据,如果不存在将创建
  216. * @param key 键
  217. * @param item 项
  218. * @param value 值
  219. * @return true 成功 false失败
  220. */
  221. public boolean hset(String key,String item,Object value) {
  222. try {
  223. redisTemplate.opsForHash().put(key, item, value);
  224. return true;
  225. } catch (Exception e) {
  226. e.printStackTrace();
  227. return false;
  228. }
  229. }
  230. /**
  231. * 向一张hash表中放入数据,如果不存在将创建
  232. * @param key 键
  233. * @param item 项
  234. * @param value 值
  235. * @param time 时间(秒) 注意:如果已存在的hash表有时间,这里将会替换原有的时间
  236. * @return true 成功 false失败
  237. */
  238. public boolean hset(String key,String item,Object value,long time) {
  239. try {
  240. redisTemplate.opsForHash().put(key, item, value);
  241. if(time>0){
  242. expire(key, time);
  243. }
  244. return true;
  245. } catch (Exception e) {
  246. e.printStackTrace();
  247. return false;
  248. }
  249. }
  250. /**
  251. * 删除hash表中的值
  252. * @param key 键 不能为null
  253. * @param item 项 可以使多个 不能为null
  254. */
  255. public void hdel(String key, Object... item){
  256. redisTemplate.opsForHash().delete(key,item);
  257. }
  258. /**
  259. * 判断hash表中是否有该项的值
  260. * @param key 键 不能为null
  261. * @param item 项 不能为null
  262. * @return true 存在 false不存在
  263. */
  264. public boolean hHasKey(String key, String item){
  265. return redisTemplate.opsForHash().hasKey(key, item);
  266. }
  267. /**
  268. * hash递增 如果不存在,就会创建一个 并把新增后的值返回
  269. * @param key 键
  270. * @param item 项
  271. * @param by 要增加几(大于0)
  272. * @return
  273. */
  274. public double hincr(String key, String item,double by){
  275. return redisTemplate.opsForHash().increment(key, item, by);
  276. }
  277. /**
  278. * hash递减
  279. * @param key 键
  280. * @param item 项
  281. * @param by 要减少记(小于0)
  282. * @return
  283. */
  284. public double hdecr(String key, String item,double by){
  285. return redisTemplate.opsForHash().increment(key, item,-by);
  286. }
  287. //============================set=============================
  288. /**
  289. * 根据key获取Set中的所有值
  290. * @param key 键
  291. * @return
  292. */
  293. public Set<Object> sGet(String key){
  294. try {
  295. return redisTemplate.opsForSet().members(key);
  296. } catch (Exception e) {
  297. e.printStackTrace();
  298. return null;
  299. }
  300. }
  301. /**
  302. * 根据value从一个set中查询,是否存在
  303. * @param key 键
  304. * @param value 值
  305. * @return true 存在 false不存在
  306. */
  307. public boolean sHasKey(String key,Object value){
  308. try {
  309. return redisTemplate.opsForSet().isMember(key, value);
  310. } catch (Exception e) {
  311. e.printStackTrace();
  312. return false;
  313. }
  314. }
  315. /**
  316. * 将数据放入set缓存
  317. * @param key 键
  318. * @param values 值 可以是多个
  319. * @return 成功个数
  320. */
  321. public long sSet(String key, Object...values) {
  322. try {
  323. return redisTemplate.opsForSet().add(key, values);
  324. } catch (Exception e) {
  325. e.printStackTrace();
  326. return 0;
  327. }
  328. }
  329. /**
  330. * 将set数据放入缓存
  331. * @param key 键
  332. * @param time 时间(秒)
  333. * @param values 值 可以是多个
  334. * @return 成功个数
  335. */
  336. public long sSetAndTime(String key,long time,Object...values) {
  337. try {
  338. Long count = redisTemplate.opsForSet().add(key, values);
  339. if(time>0) expire(key, time);
  340. return count;
  341. } catch (Exception e) {
  342. e.printStackTrace();
  343. return 0;
  344. }
  345. }
  346. /**
  347. * 获取set缓存的长度
  348. * @param key 键
  349. * @return
  350. */
  351. public long sGetSetSize(String key){
  352. try {
  353. return redisTemplate.opsForSet().size(key);
  354. } catch (Exception e) {
  355. e.printStackTrace();
  356. return 0;
  357. }
  358. }
  359. /**
  360. * 移除值为value的
  361. * @param key 键
  362. * @param values 值 可以是多个
  363. * @return 移除的个数
  364. */
  365. public long setRemove(String key, Object ...values) {
  366. try {
  367. Long count = redisTemplate.opsForSet().remove(key, values);
  368. return count;
  369. } catch (Exception e) {
  370. e.printStackTrace();
  371. return 0;
  372. }
  373. }
  374. //===============================list=================================
  375. /**
  376. * 获取list缓存的内容
  377. * @param key 键
  378. * @param start 开始
  379. * @param end 结束 0 到 -1代表所有值
  380. * @return
  381. */
  382. public List<Object> lGet(String key, long start, long end){
  383. try {
  384. return redisTemplate.opsForList().range(key, start, end);
  385. } catch (Exception e) {
  386. e.printStackTrace();
  387. return null;
  388. }
  389. }
  390. /**
  391. * 获取list缓存的长度
  392. * @param key 键
  393. * @return
  394. */
  395. public long lGetListSize(String key){
  396. try {
  397. return redisTemplate.opsForList().size(key);
  398. } catch (Exception e) {
  399. e.printStackTrace();
  400. return 0;
  401. }
  402. }
  403. /**
  404. * 通过索引 获取list中的值
  405. * @param key 键
  406. * @param index 索引 index>=0时, 0 表头,1 第二个元素,依次类推;index<0时,-1,表尾,-2倒数第二个元素,依次类推
  407. * @return
  408. */
  409. public Object lGetIndex(String key,long index){
  410. try {
  411. return redisTemplate.opsForList().index(key, index);
  412. } catch (Exception e) {
  413. e.printStackTrace();
  414. return null;
  415. }
  416. }
  417. /**
  418. * 将list放入缓存
  419. * @param key 键
  420. * @param value 值
  421. * @return
  422. */
  423. public boolean lSet(String key, Object value) {
  424. try {
  425. redisTemplate.opsForList().rightPush(key, value);
  426. return true;
  427. } catch (Exception e) {
  428. e.printStackTrace();
  429. return false;
  430. }
  431. }
  432. /**
  433. * 将list放入缓存
  434. * @param key 键
  435. * @param value 值
  436. * @param time 时间(秒)
  437. * @return
  438. */
  439. public boolean lSet(String key, Object value, long time) {
  440. try {
  441. redisTemplate.opsForList().rightPush(key, value);
  442. if (time > 0){
  443. expire(key, time);
  444. }
  445. return true;
  446. } catch (Exception e) {
  447. e.printStackTrace();
  448. return false;
  449. }
  450. }
  451. /**
  452. * 将list放入缓存
  453. * @param key 键
  454. * @param value 值
  455. * @return
  456. */
  457. public boolean lSet(String key, List<Object> value) {
  458. try {
  459. redisTemplate.opsForList().rightPushAll(key, value);
  460. return true;
  461. } catch (Exception e) {
  462. e.printStackTrace();
  463. return false;
  464. }
  465. }
  466. /**
  467. * 将list放入缓存
  468. * @param key 键
  469. * @param value 值
  470. * @param time 时间(秒)
  471. * @return
  472. */
  473. public boolean lSet(String key, List<Object> value, long time) {
  474. try {
  475. redisTemplate.opsForList().rightPushAll(key, value);
  476. if (time > 0){
  477. expire(key, time);
  478. }
  479. return true;
  480. } catch (Exception e) {
  481. e.printStackTrace();
  482. return false;
  483. }
  484. }
  485. /**
  486. * 根据索引修改list中的某条数据
  487. * @param key 键
  488. * @param index 索引
  489. * @param value 值
  490. * @return
  491. */
  492. public boolean lUpdateIndex(String key, long index,Object value) {
  493. try {
  494. redisTemplate.opsForList().set(key, index, value);
  495. return true;
  496. } catch (Exception e) {
  497. e.printStackTrace();
  498. return false;
  499. }
  500. }
  501. /**
  502. * 移除N个值为value
  503. * @param key 键
  504. * @param count 移除多少个
  505. * @param value 值
  506. * @return 移除的个数
  507. */
  508. public long lRemove(String key,long count,Object value) {
  509. try {
  510. Long remove = redisTemplate.opsForList().remove(key, count, value);
  511. return remove;
  512. } catch (Exception e) {
  513. e.printStackTrace();
  514. return 0;
  515. }
  516. }
  517. // ===============lock ==================
  518. /**
  519. * 加锁
  520. * @param key
  521. * @param time
  522. * @return
  523. */
  524. public Boolean tryLock(String key,long time) {
  525. boolean b = redisTemplate.opsForValue().setIfAbsent(key,"1");
  526. if(b){
  527. return redisTemplate.expire(key,time,TimeUnit.SECONDS);
  528. } else {
  529. return b;
  530. }
  531. }
  532. /**
  533. * 释放锁
  534. * @param key
  535. * @return
  536. */
  537. public void releaseLock(String key) {
  538. Object currentValue = redisTemplate.opsForValue().get(key);
  539. if (currentValue != null) {
  540. redisTemplate.delete(key);
  541. }
  542. }
  543. /**
  544. * 加锁
  545. * @param key
  546. * @param time
  547. * @return
  548. */
  549. public Boolean tryLock(String key,String requestId,long time) {
  550. boolean b = redisTemplate.opsForValue().setIfAbsent(key,requestId);
  551. if(b){
  552. return redisTemplate.expire(key,time,TimeUnit.SECONDS);
  553. } else {
  554. return b;
  555. }
  556. }
  557. /**
  558. * 释放锁
  559. * @param key
  560. * @return
  561. */
  562. public void releaseLock(String key,String requestId) {
  563. String currentValue = (String)redisTemplate.opsForValue().get(key);
  564. if (currentValue != null && requestId.equals(currentValue)) {
  565. redisTemplate.delete(key);
  566. }
  567. }
  568. public boolean zSetAdd(String key, Object value, long score) {
  569. try {
  570. boolean re = redisTemplate.opsForZSet().add(key, value, score);
  571. return re;
  572. } catch(Exception e) {
  573. e.printStackTrace();
  574. return false;
  575. }
  576. }
  577. public Set zSetRangeByScore(String key, double min, double max) {
  578. try {
  579. Set value = redisTemplate.opsForZSet().rangeByScore(key, min, max);
  580. return value;
  581. } catch(Exception e) {
  582. e.printStackTrace();
  583. return null;
  584. }
  585. }
  586. public Long zSetRemoveRangeByScore(String key, double min, double max) {
  587. try {
  588. Long value = redisTemplate.opsForZSet().removeRangeByScore(key, min, max);
  589. return value;
  590. } catch(Exception e) {
  591. e.printStackTrace();
  592. return null;
  593. }
  594. }
  595. }