当前位置: 首页 > article >正文

redis 缓存使用

工具类

package org.springblade.questionnaire.redis;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Service;

import java.util.Map;
import java.util.concurrent.TimeUnit;

@Service
public class RedisService {

	@Autowired
	private StringRedisTemplate stringRedisTemplate;

	private final ObjectMapper objectMapper = new ObjectMapper();

	// 存储对象到Redis
	public void setObjectToRedis(String key, Object obj) {
		try {
			// 将对象序列化为JSON字符串
			String value = objectMapper.writeValueAsString(obj);
			// 使用StringRedisTemplate将JSON字符串存储到Redis
			stringRedisTemplate.opsForValue().set(key, value);
		} catch (JsonProcessingException e) {
			throw new RuntimeException("Failed to serialize object to JSON", e);
		}
	}

	// 从Redis获取对象
	public <T> T getObjectFromRedis(String key, Class<T> clazz) {
		String json = stringRedisTemplate.opsForValue().get(key);
		if (json != null) {
			try {
				// 将JSON字符串反序列化为对象
				return objectMapper.readValue(json, clazz);
			} catch (Exception e) {
				throw new RuntimeException("Failed to deserialize JSON to object", e);
			}
		}
		return null;
	}

	// 存储对象数组到Redis
	public <T> void setArrayToRedis(String key, T[] array) {
		try {
			// 将对象数组序列化为JSON字符串
			String value = objectMapper.writeValueAsString(array);
			// 使用StringRedisTemplate将JSON字符串存储到Redis
			stringRedisTemplate.opsForValue().set(key, value);
		} catch (JsonProcessingException e) {
			throw new RuntimeException("Failed to serialize object array to JSON", e);
		}
	}

	// 从Redis获取对象数组
	@SuppressWarnings("unchecked")
	public <T> T[] getArrayFromRedis(String key, Class<T[]> clazz) {
		String json = stringRedisTemplate.opsForValue().get(key);
		if (json != null) {
			try {
				// 将JSON字符串反序列化为对象数组
				return objectMapper.readValue(json, clazz);
			} catch (Exception e) {
				throw new RuntimeException("Failed to deserialize JSON to object array", e);
			}
		}
		return null;
	}

	// 存储对象到Redis并设置过期时间
	public void setObjectToRedisWithTime(String key, Object obj, long timeout, TimeUnit timeUnit) {
		try {
			// 将对象序列化为JSON字符串
			String value = objectMapper.writeValueAsString(obj);
			// 使用StringRedisTemplate将JSON字符串存储到Redis并设置过期时间
			stringRedisTemplate.opsForValue().set(key, value, timeout, timeUnit);
		} catch (JsonProcessingException e) {
			throw new RuntimeException("Failed to serialize object to JSON", e);
		}
	}

	// 存储对象数组到Redis并设置过期时间
	public <T> void setArrayToRedisWithTime(String key, T[] array, long timeout, TimeUnit timeUnit) {
		try {
			// 将对象数组序列化为JSON字符串
			String value = objectMapper.writeValueAsString(array);
			// 使用StringRedisTemplate将JSON字符串存储到Redis并设置过期时间
			stringRedisTemplate.opsForValue().set(key, value, timeout, timeUnit);
		} catch (JsonProcessingException e) {
			throw new RuntimeException("Failed to serialize object array to JSON", e);
		}
	}

	// 存储字符串到Redis并设置过期时间
	public void setStringToRedis(String key, String value, long timeout, TimeUnit timeUnit) {
		// 使用StringRedisTemplate将字符串存储到Redis并设置过期时间
		stringRedisTemplate.opsForValue().set(key, value, timeout, timeUnit);
	}

	// 从Redis获取字符串
	public String getStringFromRedis(String key) {
		return stringRedisTemplate.opsForValue().get(key);
	}


	// 存储 Map<String, Map<String, String>> 到 Redis 并设置过期时间
	public void setTranslationsToRedis(String key, Map<String, Map<String, String>> translations, long timeout, TimeUnit timeUnit) {
		try {
			// 将 Map 序列化为 JSON 字符串
			String value = objectMapper.writeValueAsString(translations);
			// 使用 StringRedisTemplate 将 JSON 字符串存储到 Redis 并设置过期时间
			stringRedisTemplate.opsForValue().set(key, value, timeout, timeUnit);
		} catch (JsonProcessingException e) {
			throw new RuntimeException("Failed to serialize translations map to JSON", e);
		}
	}

	// 从 Redis 获取 Map<String, Map<String, String>>
	public Map<String, Map<String, String>> getTranslationsFromRedis(String key) {
		String json = stringRedisTemplate.opsForValue().get(key);
		if (json != null) {
			try {
				// 将 JSON 字符串反序列化为 Map<String, Map<String, String>>
				return objectMapper.readValue(json, new TypeReference<Map<String, Map<String, String>>>() {});
			} catch (Exception e) {
				throw new RuntimeException("Failed to deserialize JSON to translations map", e);
			}
		}
		return null;
	}
}

引用

	@Autowired
	private RedisService redisService;

调用方法

一般设置过期时间一天,看情况而定


http://www.kler.cn/a/442678.html

相关文章:

  • 【C++图论 拓扑排序】2392. 给定条件下构造矩阵|1960
  • Elasticsearch ES|QL 地理空间索引加入纽约犯罪地图
  • Ubuntu上,ffmpeg如何使用cuda硬件解码、编码、转码加速
  • java -jar启动项目报错:XXX.jar中没有主清单属性
  • Kivy App开发之UX控件ProgressBar进度条
  • 一学就废|Python基础碎片,OS模块
  • uniapp打包apk允许横屏竖屏内容翻转
  • 【计算机网络2】计算机网络的性能能指标
  • 深入解析 `DataFrame.groupby` 和 `agg` 的用法及使用场景
  • VScode MAC按任意键关闭终端 想要访问桌面文件
  • Unity3D Shader变体自定义组合压缩方案详解
  • Next.js搜索引擎优化:如何利用React和Next.js解决SEO问题
  • RequestContextHolder 与 HttpServletRequest 的联系
  • The Rise and Potential of Large Language ModelBased Agents:A Survey---讨论
  • 博弈论3:图游戏SG函数(Graph Games)
  • 使用 MyBatis-Plus Wrapper 构建自定义 SQL 查询
  • Spark内存都消耗在哪里了?
  • PHP与AJAX:实现动态网页的完美结合
  • 浏览器事件循环机制
  • PostgreSQL约束延迟生效
  • 消除图片中的浅色水印
  • sql server 数据库还原,和数据检查
  • jedis,lettuce,redisson对比
  • ARM CCA机密计算安全模型之固件启动
  • armsom产品编译烧录Linux固件
  • 群落生态学研究进展】Hmsc包开展单物种和多物种分析的技术细节及Hmsc包的实际应用