public class ByteArrayCodec extends RedisCodec<byte[],byte[]>
RedisCodec
that uses plain byte arrays.Constructor and Description |
---|
ByteArrayCodec() |
Modifier and Type | Method and Description |
---|---|
byte[] |
decodeKey(ByteBuffer bytes)
Decode the key output by redis.
|
byte[] |
decodeValue(ByteBuffer bytes)
Decode the value output by redis.
|
byte[] |
encodeKey(byte[] key)
Encode the key for output to redis.
|
byte[] |
encodeValue(byte[] value)
Encode the value for output to redis.
|
public byte[] decodeKey(ByteBuffer bytes)
RedisCodec
decodeKey
in class RedisCodec<byte[],byte[]>
bytes
- Raw bytes of the key.public byte[] decodeValue(ByteBuffer bytes)
RedisCodec
decodeValue
in class RedisCodec<byte[],byte[]>
bytes
- Raw bytes of the value.public byte[] encodeKey(byte[] key)
RedisCodec
encodeKey
in class RedisCodec<byte[],byte[]>
key
- Key.public byte[] encodeValue(byte[] value)
RedisCodec
encodeValue
in class RedisCodec<byte[],byte[]>
value
- Value.Copyright © 2015. All rights reserved.