
com.github.bingoohuang.springrediscache.StringValueSerializable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-redis-cache Show documentation
Show all versions of spring-redis-cache Show documentation
spring cache based on redis
The newest version!
package com.github.bingoohuang.springrediscache;
import java.lang.reflect.Method;
class StringValueSerializable implements ValueSerializable {
@Override
public String serialize(String value) {
return value;
}
@Override
public String deserialize(String redisValue, Method method) {
return redisValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy