Skip to content

Commit

Permalink
non redis commands
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Nov 4, 2024
1 parent 0dceae9 commit 090ba40
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 27 deletions.
18 changes: 18 additions & 0 deletions docs/supported-commands/DRAGONFLY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Dragonfly specific commands

> 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:

```python
client = FakeRedis(server_type="dragonfly")

client.execute_command("SADDEX", 10, "key", "value")
```

## [SADDEX](https://www.dragonflydb.io/docs/command-reference/sets/saddex)

Similar to SADD but adds one or more members that expire after specified number of seconds. An error is returned when
the value stored at key is not a set.
55 changes: 28 additions & 27 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,35 +60,36 @@ nav:
- Dragonfly support: dragonfly-support.md
- Valkey support: valkey-support.md
- Supported commands:
- 'redis-commands/index.md'
- 'supported-commands/index.md'
- Redis commands:
- Bitmap: redis-commands/Redis/BITMAP.md
- Cluster: redis-commands/Redis/CLUSTER.md
- Connection: redis-commands/Redis/CONNECTION.md
- Generic: redis-commands/Redis/GENERIC.md
- Geospatial indices: redis-commands/Redis/GEO.md
- Bitmap: redis-commands/Redis/BITMAP.md
- Hash: redis-commands/Redis/HASH.md
- HyperLogLog: redis-commands/Redis/HYPERLOGLOG.md
- List: redis-commands/Redis/LIST.md
- Pub/Sub: redis-commands/Redis/PUBSUB.md
- Scripting: redis-commands/Redis/SCRIPTING.md
- Server: redis-commands/Redis/SERVER.md
- Set: redis-commands/Redis/SET.md
- Sorted Set: redis-commands/Redis/SORTEDSET.md
- Stream: redis-commands/Redis/STREAM.md
- String: redis-commands/Redis/STRING.md
- Transactions: redis-commands/Redis/TRANSACTIONS.md
- RedisJSON commands: redis-commands/RedisJson/JSON.md
- Time Series commands: redis-commands/RedisTimeSeries/TIMESERIES.md
- Bitmap: supported-commands/Redis/BITMAP.md
- Cluster: supported-commands/Redis/CLUSTER.md
- Connection: supported-commands/Redis/CONNECTION.md
- Generic: supported-commands/Redis/GENERIC.md
- Geospatial indices: supported-commands/Redis/GEO.md
- Bitmap: supported-commands/Redis/BITMAP.md
- Hash: supported-commands/Redis/HASH.md
- HyperLogLog: supported-commands/Redis/HYPERLOGLOG.md
- List: supported-commands/Redis/LIST.md
- Pub/Sub: supported-commands/Redis/PUBSUB.md
- Scripting: supported-commands/Redis/SCRIPTING.md
- Server: supported-commands/Redis/SERVER.md
- Set: supported-commands/Redis/SET.md
- Sorted Set: supported-commands/Redis/SORTEDSET.md
- Stream: supported-commands/Redis/STREAM.md
- String: supported-commands/Redis/STRING.md
- Transactions: supported-commands/Redis/TRANSACTIONS.md
- RedisJSON commands: supported-commands/RedisJson/JSON.md
- Time Series commands: supported-commands/RedisTimeSeries/TIMESERIES.md
- Probabilistic commands:
- Bloom Filter: redis-commands/RedisBloom/BF.md
- Cuckoo Filter: redis-commands/RedisBloom/CF.md
- Count-Min Sketch: redis-commands/RedisBloom/CMS.md
- t-digest: redis-commands/RedisBloom/TDIGEST.md
- top-k: redis-commands/RedisBloom/TOPK.md
- Search commands: redis-commands/RedisSearch/SEARCH.md
- Suggestion commands: redis-commands/RedisSearch/SUGGESTION.md
- Bloom Filter: supported-commands/RedisBloom/BF.md
- Cuckoo Filter: supported-commands/RedisBloom/CF.md
- Count-Min Sketch: supported-commands/RedisBloom/CMS.md
- t-digest: supported-commands/RedisBloom/TDIGEST.md
- top-k: supported-commands/RedisBloom/TOPK.md
- Search commands: supported-commands/RedisSearch/SEARCH.md
- Suggestion commands: supported-commands/RedisSearch/SUGGESTION.md
- Dragonfly commands: supported-commands/DRAGONFLY.md
- Guides:
- Implementing support for a command: guides/implement-command.md
- Write a new test case: guides/test-case.md
Expand Down

0 comments on commit 090ba40

Please sign in to comment.