package com.ruoyi.common.utils; import com.google.common.collect.Lists; import com.ruoyi.common.utils.spring.SpringUtils; import lombok.AccessLevel; import lombok.NoArgsConstructor; import org.redisson.api.*; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.TimeUnit; import java.util.function.Consumer; /** * redis 工具类 * * @author Lion Li * @version 3.1.0 新增 */ @NoArgsConstructor(access = AccessLevel.PRIVATE) @SuppressWarnings(value = {"unchecked", "rawtypes"}) public class RedisUtils { private static RedissonClient client = SpringUtils.getBean(RedissonClient.class); /** * 限流 * * @param key 限流key * @param rateType 限流类型 * @param rate 速率 * @param rateInterval 速率间隔 * @return -1 表示失败 */ public static long rateLimiter(String key, RateType rateType, int rate, int rateInterval) { RRateLimiter rateLimiter = client.getRateLimiter(key); rateLimiter.trySetRate(rateType, rate, rateInterval, RateIntervalUnit.SECONDS); if (rateLimiter.tryAcquire()) { return rateLimiter.availablePermits(); } else { return -1L; } } /** * 获取实例id */ public static String getClientId() { return client.getId(); } /** * 发布通道消息 * * @param channelKey 通道key * @param msg 发送数据 * @param consumer 自定义处理 */ public static void publish(String channelKey, T msg, Consumer consumer) { RTopic topic = client.getTopic(channelKey); topic.publish(msg); consumer.accept(msg); } public static void publish(String channelKey, T msg) { RTopic topic = client.getTopic(channelKey); topic.publish(msg); } /** * 订阅通道接收消息 * * @param channelKey 通道key * @param clazz 消息类型 * @param consumer 自定义处理 */ public static void subscribe(String channelKey, Class clazz, Consumer consumer) { RTopic topic = client.getTopic(channelKey); topic.addListener(clazz, (channel, msg) -> consumer.accept(msg)); } /** * 缓存基本的对象,Integer、String、实体类等 * * @param key 缓存的键值 * @param value 缓存的值 */ public static void setCacheObject(final String key, final T value) { setCacheObject(key, value, false); } /** * 缓存基本的对象,保留当前对象 TTL 有效期 * * @param key 缓存的键值 * @param value 缓存的值 * @param isSaveTtl 是否保留TTL有效期(例如: set之前ttl剩余90 set之后还是为90) * @since Redis 6.X 以上使用 setAndKeepTTL 兼容 5.X 方案 */ public static void setCacheObject(final String key, final T value, final boolean isSaveTtl) { RBucket bucket = client.getBucket(key); if (isSaveTtl) { try { bucket.setAndKeepTTL(value); } catch (Exception e) { long timeToLive = bucket.remainTimeToLive(); bucket.set(value); bucket.expire(timeToLive, TimeUnit.MILLISECONDS); } } else { bucket.set(value); } } /** * 缓存基本的对象,Integer、String、实体类等 * * @param key 缓存的键值 * @param value 缓存的值 * @param timeout 时间 * @param timeUnit 时间颗粒度 */ public static void setCacheObject(final String key, final T value, final long timeout, final TimeUnit timeUnit) { RBucket result = client.getBucket(key); result.set(value); result.expire(timeout, timeUnit); } /** * 设置有效时间 * * @param key Redis键 * @param timeout 超时时间 * @return true=设置成功;false=设置失败 */ public static 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 static boolean expire(final String key, final long timeout, final TimeUnit unit) { RBucket rBucket = client.getBucket(key); return rBucket.expire(timeout, unit); } /** * 获得缓存的基本对象。 * * @param key 缓存键值 * @return 缓存键值对应的数据 */ public static T getCacheObject(final String key) { RBucket rBucket = client.getBucket(key); return rBucket.get(); } /** * 获得key剩余存活时间 * * @param key 缓存键值 * @return 剩余存活时间 */ public static long getTimeToLive(final String key) { RBucket rBucket = client.getBucket(key); return rBucket.remainTimeToLive(); } /** * 删除单个对象 * * @param key */ public static boolean deleteObject(final String key) { return client.getBucket(key).delete(); } /* */ /** * 删除集合对象 * * @param collection 多个对象 * @return */ public static void deleteObject(final Collection collection) { RBatch batch = client.createBatch(); collection.forEach(t -> { batch.getBucket(t.toString()).deleteAsync(); }); batch.execute(); } /** * 缓存List数据 * * @param key 缓存的键值 * @param dataList 待缓存的List数据 * @return 缓存的对象 */ public static boolean setCacheList(final String key, final List dataList) { RList rList = client.getList(key); return rList.addAll(dataList); } /** * 获得缓存的list对象 * * @param key 缓存的键值 * @return 缓存键值对应的数据 */ public static List getCacheList(final String key) { RList rList = client.getList(key); return rList.readAll(); } /** * 缓存Set * * @param key 缓存键值 * @param dataSet 缓存的数据 * @return 缓存数据的对象 */ public static boolean setCacheSet(final String key, final Set dataSet) { RSet rSet = client.getSet(key); return rSet.addAll(dataSet); } /** * 获得缓存的set * * @param key * @return */ public static Set getCacheSet(final String key) { RSet rSet = client.getSet(key); return rSet.readAll(); } /** * 缓存Map * * @param key * @param dataMap */ public static void setCacheMap(final String key, final Map dataMap) { if (dataMap != null) { RMap rMap = client.getMap(key); rMap.putAll(dataMap); } } /** * 获得缓存的Map * * @param key * @return */ public static Map getCacheMap(final String key) { RMap rMap = client.getMap(key); return rMap.getAll(rMap.keySet()); } /** * 往Hash中存入数据 * * @param key Redis键 * @param hKey Hash键 * @param value 值 */ public static void setCacheMapValue(final String key, final String hKey, final T value) { RMap rMap = client.getMap(key); rMap.put(hKey, value); } /** * 获取Hash中的数据 * * @param key Redis键 * @param hKey Hash键 * @return Hash中的对象 */ public static T getCacheMapValue(final String key, final String hKey) { RMap rMap = client.getMap(key); return rMap.get(hKey); } /** * 删除Hash中的数据 * * @param key Redis键 * @param hKey Hash键 * @return Hash中的对象 */ public static T delCacheMapValue(final String key, final String hKey) { RMap rMap = client.getMap(key); return rMap.remove(hKey); } /** * 获取多个Hash中的数据 * * @param key Redis键 * @param hKeys Hash键集合 * @return Hash对象集合 */ public static Map getMultiCacheMapValue(final String key, final Set hKeys) { RMap rMap = client.getMap(key); return rMap.getAll(hKeys); } /** * 获得缓存的基本对象列表 * * @param pattern 字符串前缀 * @return 对象列表 */ public static Collection keys(final String pattern) { Iterable iterable = client.getKeys().getKeysByPattern(pattern); return Lists.newArrayList(iterable); } }