package com.ruoyi.common.core.redis; import com.google.common.collect.Lists; import org.redisson.api.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.*; import java.util.concurrent.TimeUnit; /** * spring redis 工具类 * * @author shenxinquan **/ @SuppressWarnings(value = {"unchecked", "rawtypes"}) @Component public class RedisCache { @Autowired private RedissonClient redissonClient; /** * 缓存基本的对象,Integer、String、实体类等 * * @param key 缓存的键值 * @param value 缓存的值 */ public void setCacheObject(final String key, final T value) { redissonClient.getBucket(key).set(value); } /** * 缓存基本的对象,Integer、String、实体类等 * * @param key 缓存的键值 * @param value 缓存的值 * @param timeout 时间 * @param timeUnit 时间颗粒度 */ public void setCacheObject(final String key, final T value, final Integer timeout, final TimeUnit timeUnit) { RBucket result = redissonClient.getBucket(key); result.set(value); result.expire(timeout, timeUnit); } /** * 设置有效时间 * * @param key Redis键 * @param timeout 超时时间 * @return true=设置成功;false=设置失败 */ public boolean expire(final String key, final long timeout) { return expire(key, timeout, TimeUnit.SECONDS); } /** * 设置有效时间 * * @param key Redis键 * @param timeout 超时时间 * @param unit 时间单位 * @return true=设置成功;false=设置失败 */ public boolean expire(final String key, final long timeout, final TimeUnit unit) { RBucket rBucket = redissonClient.getBucket(key); return rBucket.expire(timeout, unit); } /** * 获得缓存的基本对象。 * * @param key 缓存键值 * @return 缓存键值对应的数据 */ public T getCacheObject(final String key) { RBucket rBucket = redissonClient.getBucket(key); return rBucket.get(); } /** * 删除单个对象 * * @param key */ public boolean deleteObject(final String key) { return redissonClient.getBucket(key).delete(); } /* */ /** * 删除集合对象 * * @param collection 多个对象 * @return */ public long deleteObject(final Collection collection) { return redissonClient.getKeys().delete(Arrays.toString(collection.toArray())); } /** * 缓存List数据 * * @param key 缓存的键值 * @param dataList 待缓存的List数据 * @return 缓存的对象 */ public boolean setCacheList(final String key, final List dataList) { RList rList = redissonClient.getList(key); return rList.addAll(dataList); } /** * 获得缓存的list对象 * * @param key 缓存的键值 * @return 缓存键值对应的数据 */ public List getCacheList(final String key) { RList rList = redissonClient.getList(key); return rList.readAll(); } /** * 缓存Set * * @param key 缓存键值 * @param dataSet 缓存的数据 * @return 缓存数据的对象 */ public boolean setCacheSet(final String key, final Set dataSet) { RSet rSet = redissonClient.getSet(key); return rSet.addAll(dataSet); } /** * 获得缓存的set * * @param key * @return */ public Set getCacheSet(final String key) { RSet rSet = redissonClient.getSet(key); return rSet.readAll(); } /** * 缓存Map * * @param key * @param dataMap */ public void setCacheMap(final String key, final Map dataMap) { if (dataMap != null) { RMap rMap = redissonClient.getMap(key); rMap.putAll(dataMap); } } /** * 获得缓存的Map * * @param key * @return */ public Map getCacheMap(final String key) { RMap rMap = redissonClient.getMap(key); return rMap.getAll(rMap.keySet()); } /** * 往Hash中存入数据 * * @param key Redis键 * @param hKey Hash键 * @param value 值 */ public void setCacheMapValue(final String key, final String hKey, final T value) { RMap rMap = redissonClient.getMap(key); rMap.put(hKey, value); } /** * 获取Hash中的数据 * * @param key Redis键 * @param hKey Hash键 * @return Hash中的对象 */ public T getCacheMapValue(final String key, final String hKey) { RMap rMap = redissonClient.getMap(key); return rMap.get(hKey); } /** * 获取多个Hash中的数据 * * @param key Redis键 * @param hKeys Hash键集合 * @return Hash对象集合 */ public List getMultiCacheMapValue(final String key, final Collection hKeys) { RListMultimap rListMultimap = redissonClient.getListMultimap(key); return rListMultimap.getAll(hKeys); } /** * 获得缓存的基本对象列表 * * @param pattern 字符串前缀 * @return 对象列表 */ public Collection keys(final String pattern) { Iterable iterable = redissonClient.getKeys().getKeysByPattern(pattern); return Lists.newArrayList(iterable); } }