Redis - Spring Boot Redis 使用 msgpack 作为序列化

本文涉及的产品
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
云数据库 Tair(兼容Redis),内存型 2GB
简介: Redis - Spring Boot Redis 使用 msgpack 作为序列化

首先引入 msgpack 所需要的包

<dependency><groupId>org.msgpack</groupId><artifactId>msgpack-core</artifactId><version>0.8.13</version></dependency><dependency><groupId>org.msgpack</groupId><artifactId>jackson-dataformat-msgpack</artifactId><version>0.8.13</version></dependency>
  • 版本一定要对齐,之前 jackson-dataformat-msgpack 版本太低导致无法使用。

 

RedisConfig.java(Spring Boot Redis 配置类)

importcom.fasterxml.jackson.databind.ObjectMapper;
importorg.msgpack.jackson.dataformat.MessagePackFactory;
importorg.springframework.cache.annotation.CachingConfigurerSupport;
importorg.springframework.cache.annotation.EnableCaching;
importorg.springframework.context.annotation.Bean;
importorg.springframework.context.annotation.Configuration;
importorg.springframework.data.redis.cache.RedisCacheConfiguration;
importorg.springframework.data.redis.connection.RedisConnectionFactory;
importorg.springframework.data.redis.core.RedisTemplate;
importorg.springframework.data.redis.core.StringRedisTemplate;
importorg.springframework.data.redis.serializer.*;
@Configuration@EnableCachingpublicclassRedisConfigextendsCachingConfigurerSupport {
/*** 设置spring redis data 序列化模板* @param factory* @return*/@BeanpublicRedisTemplateredisTemplate(RedisConnectionFactoryfactory) {
StringRedisTemplatetemplate=newStringRedisTemplate(factory);
ObjectMappermapper=newObjectMapper(newMessagePackFactory());
Jackson2JsonRedisSerializerJackson2Serializer=newJackson2JsonRedisSerializer(Object.class);
Jackson2Serializer.setObjectMapper(mapper);
RedisSerializerredisSerializer=Jackson2Serializer;
template.setValueSerializer(redisSerializer);
template.setKeySerializer(newStringRedisSerializer());
returntemplate;
    }
/*** 整合spring cache* 设置@cacheable 序列化方式* @return*/@BeanpublicRedisCacheConfigurationredisCacheConfiguration() {
RedisCacheConfigurationconfiguration=RedisCacheConfiguration.defaultCacheConfig();
configuration=configuration.serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(newGenericMsgpackRedisSerializer()));
returnconfiguration;
    }
}

GenericMsgpackRedisSerializer.java(Spring Cache msgpack 序列化类)

importcom.fasterxml.jackson.annotation.JsonTypeInfo.As;
importcom.fasterxml.jackson.core.JsonGenerator;
importcom.fasterxml.jackson.core.JsonProcessingException;
importcom.fasterxml.jackson.databind.ObjectMapper;
importcom.fasterxml.jackson.databind.SerializerProvider;
importcom.fasterxml.jackson.databind.ObjectMapper.DefaultTyping;
importcom.fasterxml.jackson.databind.module.SimpleModule;
importcom.fasterxml.jackson.databind.ser.std.StdSerializer;
importjava.io.IOException;
importorg.msgpack.core.annotations.Nullable;
importorg.msgpack.jackson.dataformat.MessagePackFactory;
importorg.springframework.cache.support.NullValue;
importorg.springframework.data.redis.serializer.RedisSerializer;
importorg.springframework.data.redis.serializer.SerializationException;
importorg.springframework.util.Assert;
importorg.springframework.util.StringUtils;
publicclassGenericMsgpackRedisSerializerimplementsRedisSerializer<Object> {
staticfinalbyte[] EMPTY_ARRAY=newbyte[0];
privatefinalObjectMappermapper;
publicGenericMsgpackRedisSerializer() {
this.mapper=newObjectMapper(newMessagePackFactory());
this.mapper.registerModule((newSimpleModule()).addSerializer(newGenericMsgpackRedisSerializer.NullValueSerializer(null)));
this.mapper.enableDefaultTyping(DefaultTyping.NON_FINAL, As.PROPERTY);
    }
@Overridepublicbyte[] serialize(@NullableObjectsource) throwsSerializationException {
if (source==null) {
returnEMPTY_ARRAY;
        } else {
try {
returnthis.mapper.writeValueAsBytes(source);
            } catch (JsonProcessingExceptionvar3) {
thrownewSerializationException("Could not write JSON: "+var3.getMessage(), var3);
            }
        }
    }
@OverridepublicObjectdeserialize(@Nullablebyte[] source) throwsSerializationException {
returnthis.deserialize(source, Object.class);
    }
@Nullablepublic<T>Tdeserialize(@Nullablebyte[] source, Class<T>type) throwsSerializationException {
Assert.notNull(type, "Deserialization type must not be null! Pleaes provide Object.class to make use of Jackson2 default typing.");
if (source==null||source.length==0) {
returnnull;
        } else {
try {
returnthis.mapper.readValue(source, type);
            } catch (Exceptionvar4) {
thrownewSerializationException("Could not read JSON: "+var4.getMessage(), var4);
            }
        }
    }
privateclassNullValueSerializerextendsStdSerializer<NullValue> {
privatestaticfinallongserialVersionUID=2199052150128658111L;
privatefinalStringclassIdentifier;
NullValueSerializer(@NullableStringclassIdentifier) {
super(NullValue.class);
this.classIdentifier=StringUtils.hasText(classIdentifier) ?classIdentifier : "@class";
        }
@Overridepublicvoidserialize(NullValuevalue, JsonGeneratorjgen, SerializerProviderprovider) throwsIOException {
jgen.writeStartObject();
jgen.writeStringField(this.classIdentifier, NullValue.class.getName());
jgen.writeEndObject();
        }
    }
}

RedisCacheRedisUtils.java(序列化工具类)

importjava.util.Set;
importcom.fasterxml.jackson.databind.ObjectMapper;
importorg.msgpack.jackson.dataformat.MessagePackFactory;
importorg.slf4j.Logger;
importorg.slf4j.LoggerFactory;
importorg.springframework.data.redis.connection.RedisConnectionFactory;
importorg.springframework.data.redis.core.*;
importorg.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
importorg.springframework.data.redis.serializer.RedisSerializer;
importorg.springframework.stereotype.Component;
importjavax.annotation.Resource;
/*** @description: redis缓存工具类* @version:1.0*/@ComponentpublicclassRedisCacheUtils {
privatestaticLoggerlogger=LoggerFactory.getLogger(RedisCacheUtils.class);
privatefinalstaticBooleanREDIS_ENABLE=true;
@ResourceprivateRedisTemplateredisTemplate;
@ResourceRedisConnectionFactoryredisConnectionFactory;
publicRedisTemplategetRedisTemplate() {
returnredisTemplate;
    }
publicvoidsetRedisTemplate(RedisTemplateredisTemplate) {
this.redisTemplate=redisTemplate;
    }
publicRedisCacheUtils(RedisTemplateredisTemplate) {
this.redisTemplate=redisTemplate;
    }
/*** 缓存基本的对象,Integer、String、实体类等** @param key   缓存的键值* @param value 缓存的值* @return缓存的对象   */publicbooleansetCacheObject(Stringkey, Objectvalue) {
if (!REDIS_ENABLE) {
returnfalse;
        }
logger.debug("存入缓存 key:"+key);
try {
ValueOperations<String, Object>operation=redisTemplate.opsForValue();
operation.set(key, value);
returntrue;
        } catch (Exceptionex) {
logger.error(ex.getMessage());
returnfalse;
        }
    }
/*** 根据pattern匹配清除缓存* @param pattern*/publicvoidclear(Stringpattern) {
if (!REDIS_ENABLE) {
return;
        }
logger.debug("清除缓存 pattern:"+pattern);
try {
ValueOperations<String, Object>valueOper=redisTemplate.opsForValue();
RedisOperations<String, Object>redisOperations=valueOper.getOperations();
redisOperations.keys(pattern);
Set<String>keys=redisOperations.keys(pattern);
for (Stringkey : keys) {
redisOperations.delete(key);
            }
        } catch (Exceptionex) {
logger.error(ex.getMessage());
return;
        }
    }
/*** 根据key清除缓存* @param key*/publicvoiddelete(Stringkey) {
if (!REDIS_ENABLE) {
return;
        }
logger.debug("删除缓存 key:"+key);
try {
ValueOperations<String, Object>valueOper=redisTemplate.opsForValue();
RedisOperations<String, Object>redisOperations=valueOper.getOperations();
redisOperations.delete(key);
        } catch (Exceptionex) {
logger.error(ex.getMessage());
return;
        }
    }
/*** 获得缓存的基本对象。* @param key 缓存键值* @return 缓存键值对应的数据*   */publicObjectgetCacheObject(Stringkey) {
if (!REDIS_ENABLE) {
returnnull;
        }
logger.debug("获取缓存 key:"+key);
try {
ValueOperations<String, Object>operation=redisTemplate.opsForValue();
returnoperation.get(key);
        } catch (Exceptionex) {
logger.error(ex.getMessage());
returnnull;
        }
    }
/*** 获得缓存的基本对象。* @param key 缓存键值* @return 缓存键值对应的数据*   */public<T>TgetCacheObject(Stringkey, Class<T>clazz) {
if (!REDIS_ENABLE) {
returnnull;
        }
logger.debug("获取缓存 key:"+key);
RedisTemplatetemplate=newStringRedisTemplate(redisConnectionFactory);
Jackson2JsonRedisSerializerJackson2Serializer=newJackson2JsonRedisSerializer(clazz);
Jackson2Serializer.setObjectMapper(newObjectMapper(newMessagePackFactory()));
RedisSerializerredisSerializer=Jackson2Serializer;
template.setValueSerializer(redisSerializer);
try {
ValueOperations<String, T>operation=template.opsForValue();
return (T) operation.get(key);
        } catch (Exceptionex) {
logger.error(ex.getMessage());
returnnull;
        }
    }
}

启动 Spring Boot 开始测试

@RestControllerpublicclassTestController {
@ResourceRedisCacheUtilsredisCacheUtils;
@GetMapping("/getCache")
publicObjectgetCache() {
List<String>result=redisCacheUtils.getCacheObject("list_cache", newArrayList<HashMap<String, String>>().getClass());
returnresult;
    }
@GetMapping("/setCache")
publicObjectsetCache() {
List<Map>list=newArrayList<>();
for (inti=0; i<100; i++) {
Mapmap=newHashMap<String, String>();
map.put("id", i);
map.put("name", "index="+i);
list.add(map);
        }
returnredisCacheUtils.setCacheObject("list_cache", list);
    }
}
  • 缓存结果(msgpack:大小1893字节)

image.png

  • 缓存结果(fastjson:大小2781字节)

image.png

  • 速度比较(10000条数据测试,非专业测试结果,仅供参考)

排名结果:msgpack > fastJson > jackson

image.png

相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
目录
相关文章
|
17天前
|
存储 NoSQL Java
使用lock4j-redis-template-spring-boot-starter实现redis分布式锁
通过使用 `lock4j-redis-template-spring-boot-starter`,我们可以轻松实现 Redis 分布式锁,从而解决分布式系统中多个实例并发访问共享资源的问题。合理配置和使用分布式锁,可以有效提高系统的稳定性和数据的一致性。希望本文对你在实际项目中使用 Redis 分布式锁有所帮助。
47 5
|
1月前
|
存储 运维 安全
Spring运维之boot项目多环境(yaml 多文件 proerties)及分组管理与开发控制
通过以上措施,可以保证Spring Boot项目的配置管理在专业水准上,并且易于维护和管理,符合搜索引擎收录标准。
42 2
|
1月前
|
NoSQL Java API
springboot项目Redis统计在线用户
通过本文的介绍,您可以在Spring Boot项目中使用Redis实现在线用户统计。通过合理配置Redis和实现用户登录、注销及统计逻辑,您可以高效地管理在线用户。希望本文的详细解释和代码示例能帮助您在实际项目中成功应用这一技术。
38 4
|
1月前
|
消息中间件 NoSQL Java
Spring Boot整合Redis
通过Spring Boot整合Redis,可以显著提升应用的性能和响应速度。在本文中,我们详细介绍了如何配置和使用Redis,包括基本的CRUD操作和具有过期时间的值设置方法。希望本文能帮助你在实际项目中高效地整合和使用Redis。
55 2
|
2月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
75 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
|
2月前
|
NoSQL Java Redis
redis的基本命令,并用netty操作redis(不使用springboot或者spring框架)就单纯的用netty搞。
这篇文章介绍了Redis的基本命令,并展示了如何使用Netty框架直接与Redis服务器进行通信,包括设置Netty客户端、编写处理程序以及初始化Channel的完整示例代码。
67 1
redis的基本命令,并用netty操作redis(不使用springboot或者spring框架)就单纯的用netty搞。
|
2月前
|
缓存 NoSQL Java
Spring Boot与Redis:整合与实战
【10月更文挑战第15天】本文介绍了如何在Spring Boot项目中整合Redis,通过一个电商商品推荐系统的案例,详细展示了从添加依赖、配置连接信息到创建配置类的具体步骤。实战部分演示了如何利用Redis缓存提高系统响应速度,减少数据库访问压力,从而提升用户体验。
125 2
|
2月前
|
JSON NoSQL Java
springBoot:jwt&redis&文件操作&常见请求错误代码&参数注解 (九)
该文档涵盖JWT(JSON Web Token)的组成、依赖、工具类创建及拦截器配置,并介绍了Redis的依赖配置与文件操作相关功能,包括文件上传、下载、删除及批量删除的方法。同时,文档还列举了常见的HTTP请求错误代码及其含义,并详细解释了@RequestParam与@PathVariable等参数注解的区别与用法。
|
2月前
|
NoSQL Java Redis
shiro学习四:使用springboot整合shiro,正常的企业级后端开发shiro认证鉴权流程。使用redis做token的过滤。md5做密码的加密。
这篇文章介绍了如何使用Spring Boot整合Apache Shiro框架进行后端开发,包括认证和授权流程,并使用Redis存储Token以及MD5加密用户密码。
39 0
shiro学习四:使用springboot整合shiro,正常的企业级后端开发shiro认证鉴权流程。使用redis做token的过滤。md5做密码的加密。
|
1月前
|
JavaScript NoSQL Java
CC-ADMIN后台简介一个基于 Spring Boot 2.1.3 、SpringBootMybatis plus、JWT、Shiro、Redis、Vue quasar 的前后端分离的后台管理系统
CC-ADMIN后台简介一个基于 Spring Boot 2.1.3 、SpringBootMybatis plus、JWT、Shiro、Redis、Vue quasar 的前后端分离的后台管理系统
45 0
下一篇
DataWorks