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

org.hibernate.cache.redis.serializer.StringRedisSerializer Maven / Gradle / Ivy

package org.hibernate.cache.redis.serializer;

/**
 * UTF-8 String serializer
 *
 * @author [email protected]
 * @since 2013. 11. 16. 오후 1:58
 */
public class StringRedisSerializer implements RedisSerializer {

    @Override
    public byte[] serialize(String str) {
        return (str == null || str.length() == 0) ? EMPTY_BYTES : str.getBytes(UTF_8);
    }

    @Override
    public String deserialize(byte[] bytes) {
        return (bytes == null || bytes.length == 0) ? "" : new String(bytes, UTF_8);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy