top.netkit.redis.client.executor.RedisCommandExecutor Maven / Gradle / Ivy
The newest version!
package top.netkit.redis.client.executor;
import org.redisson.client.codec.Codec;
import top.netkit.redis.client.command.*;
/**
* redis command executor
* @author shixinke
*/
public interface RedisCommandExecutor extends KeyCommandExecutor,
StringCommandExecutor,
HashCommandExecutor,
ListCommandExecutor,
SetCommandExecutor,
SortedSetCommandExecutor,
TransactionCommandExecutor,
ScriptCommandExecutor,
QueueCommandExecutor {
/**
* 设置编码
* @param codec
*/
void setCodec(Codec codec);
/**
* 获取编码
* @return
*/
Codec getCodec();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy