
io.dropwizard.redis.codec.Utf8StringCodecFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-redis Show documentation
Show all versions of dropwizard-redis Show documentation
Provides easy integration for Dropwizard applications with Redis
The newest version!
package io.dropwizard.redis.codec;
import com.fasterxml.jackson.annotation.JsonTypeName;
import io.lettuce.core.codec.RedisCodec;
import io.lettuce.core.codec.Utf8StringCodec;
@JsonTypeName("utf8-string")
public class Utf8StringCodecFactory implements RedisCodecFactory {
@Override
public RedisCodec build() {
return new Utf8StringCodec();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy