
io.dropwizard.redis.codec.ByteArrayCodecFactory 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.ByteArrayCodec;
import io.lettuce.core.codec.RedisCodec;
@JsonTypeName("byte-array")
public class ByteArrayCodecFactory implements RedisCodecFactory {
@Override
public RedisCodec build() {
return new ByteArrayCodec();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy