RedisUtil.java 15 KB

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