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

io.dropwizard.redis.codec.StringCodecFactory Maven / Gradle / Ivy

package io.dropwizard.redis.codec;

import com.fasterxml.jackson.annotation.JsonTypeName;
import io.lettuce.core.codec.RedisCodec;
import io.lettuce.core.codec.StringCodec;

@JsonTypeName("string")
public class StringCodecFactory implements RedisCodecFactory {
    @Override
    public RedisCodec build() {
        return new StringCodec();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy