diff --git a/docs/supported-commands/DRAGONFLY.md b/docs/supported-commands/DRAGONFLY.md index 6cd14110..a0c5341b 100644 --- a/docs/supported-commands/DRAGONFLY.md +++ b/docs/supported-commands/DRAGONFLY.md @@ -2,13 +2,11 @@ > To implement support for a command, see [here](/guides/implement-command/) -This are commands that are not implemented in Redis but supported in Dragonfly and FakeRedis. - -To use these commands, you can call `execute_command` with the command name and arguments as follows: +These are commands that are not implemented in Redis but supported in Dragonfly and FakeRedis. To use these commands, +you can call `execute_command` with the command name and arguments as follows: ```python client = FakeRedis(server_type="dragonfly") - client.execute_command("SADDEX", 10, "key", "value") ``` diff --git a/docs/supported-commands/index.md b/docs/supported-commands/index.md index e4eea0a1..30b2317e 100644 --- a/docs/supported-commands/index.md +++ b/docs/supported-commands/index.md @@ -2,7 +2,10 @@ Commands from [Redis][1], [RedisJSON][2], [RedisTimeSeries][3], and [RedisBloom][4] are supported. +Additionally, [Dragonfly specific commands][dragonfly] are also supported. + [1]: /supported-commands/Redis/BITMAP/ [2]: /supported-commands/RedisJSON/JSON/ [3]: /supported-commands/RedisTimeSeries/TIMESERIES/ [4]: /supported-commands/RedisBloom/BF/ +[dragonfly]: /supported-commands/DRAGONFLY/