execute abstract method

Future execute(
  1. List<String> command
)

Executes a raw command.

Note: This is a low-level method. Prefer using the specific command methods (e.g., get, set) when available.

This method should NOT be used for Pub/Sub management commands (SUBSCRIBE, UNSUBSCRIBE, etc.), as they are handled differently.

Implementation

Future<dynamic> execute(List<String> command);