@ -18,7 +18,12 @@ package org.redisson.codec;
import com.fasterxml.jackson.dataformat.ion.IonObjectMapper;
/**
* Amazon Ion codec
* Amazon Ion codec based on Jackson implementation
* <a href="https://github.com/FasterXML/jackson-dataformats-binary/tree/master/ion">
* https://github.com/FasterXML/jackson-dataformats-binary/tree/master/ion
* </a>
* <p>
* Fully thread-safe.
*
* @author Nikita Koksharov
@ -49,6 +49,10 @@ import io.netty.buffer.ByteBufInputStream;
import io.netty.buffer.ByteBufOutputStream;
* Json codec based on Jackson implementation.
* https://github.com/FasterXML/jackson
* @see org.redisson.codec.CborJacksonCodec
* @see org.redisson.codec.MsgPackJacksonCodec
@ -32,6 +32,9 @@ import org.redisson.client.protocol.Encoder;
import java.io.IOException;
* Kryo 5 codec
@ -34,6 +34,9 @@ import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
* Kryo 4 codec
@ -21,6 +21,8 @@ import com.fasterxml.jackson.databind.ObjectMapper;
* MsgPack binary codec
@ -30,6 +30,9 @@ import io.netty.buffer.ByteBufInputStream;
* JDK's serialization codec.
* Fully thread-safe.*
@ -19,7 +19,9 @@ import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.smile.SmileFactory;
* Smile binary codec
* Smile binary codec.