All Downloads are FREE. Search and download functionalities are using the official Maven repository.

in.hocg.boot.cache.autoconfiguration.serializer.RedisKeySerializer Maven / Gradle / Ivy

There is a newer version: 1.0.63
Show newest version
package in.hocg.boot.cache.autoconfiguration.serializer;

import lombok.extern.slf4j.Slf4j;
import org.springframework.data.redis.serializer.RedisSerializer;

import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;

/**
 * Created by hocgin on 2021/5/13
 * email: [email protected]
 *
 * @author hocgin
 */
@Slf4j
public class RedisKeySerializer implements RedisSerializer {
    private final Charset charset = StandardCharsets.UTF_8;
    private final String keyPrefix;

    public RedisKeySerializer(String keyPrefix) {
        this.keyPrefix = keyPrefix;
    }

    @Override
    public String deserialize(byte[] bytes) {
        String saveKey = new String(bytes, charset);
        int indexOf = saveKey.indexOf(keyPrefix);
        if (indexOf > 0) {
            log.warn("Key 缺少前缀");
        } else {
            saveKey = saveKey.substring(indexOf);
        }
        log.debug("SaveKey=[{}]", saveKey);
        return saveKey;
    }

    @Override
    public byte[] serialize(String string) {
        String key = keyPrefix + string;
        log.debug("Key=[{}], getBytes=[{}]", key, key.getBytes(charset));
        return key.getBytes(charset);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy