Package redis.clients.jedis.commands
Interface ProtocolCommand
-
- All Superinterfaces:
Rawable
- All Known Implementing Classes:
JsonProtocol.JsonCommand,Protocol.Command,RedisBloomProtocol.BloomFilterCommand,RedisBloomProtocol.CountMinSketchCommand,RedisBloomProtocol.CuckooFilterCommand,RedisBloomProtocol.TDigestCommand,RedisBloomProtocol.TopKCommand,SearchProtocol.SearchCommand,TimeSeriesProtocol.TimeSeriesCommand
public interface ProtocolCommand extends Rawable
Interface for Redis protocol commands.This interface represents commands that can be sent to Redis servers. It extends
Rawableto provide byte array representation of the command.Compatibility Note: This interface is provided for compatibility with original Jedis code. In the GLIDE compatibility layer, only a limited subset of commands are supported through the
sendCommandmethods. For full functionality, use the specific typed methods provided by the GLIDE client.