-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
1,718 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,77 +1,74 @@ | ||
# Time Series commands | ||
|
||
Module currently not implemented in fakeredis. | ||
## `timeseries` commands (17/17 implemented) | ||
|
||
|
||
### Unsupported timeseries commands | ||
> To implement support for a command, see [here](../../guides/implement-command/) | ||
#### [TS.CREATE](https://redis.io/commands/ts.create/) <small>(not implemented)</small> | ||
### [TS.CREATE](https://redis.io/commands/ts.create/) | ||
|
||
Create a new time series | ||
|
||
#### [TS.DEL](https://redis.io/commands/ts.del/) <small>(not implemented)</small> | ||
### [TS.DEL](https://redis.io/commands/ts.del/) | ||
|
||
Delete all samples between two timestamps for a given time series | ||
|
||
#### [TS.ALTER](https://redis.io/commands/ts.alter/) <small>(not implemented)</small> | ||
### [TS.ALTER](https://redis.io/commands/ts.alter/) | ||
|
||
Update the retention, chunk size, duplicate policy, and labels of an existing time series | ||
|
||
#### [TS.ADD](https://redis.io/commands/ts.add/) <small>(not implemented)</small> | ||
### [TS.ADD](https://redis.io/commands/ts.add/) | ||
|
||
Append a sample to a time series | ||
|
||
#### [TS.MADD](https://redis.io/commands/ts.madd/) <small>(not implemented)</small> | ||
### [TS.MADD](https://redis.io/commands/ts.madd/) | ||
|
||
Append new samples to one or more time series | ||
|
||
#### [TS.INCRBY](https://redis.io/commands/ts.incrby/) <small>(not implemented)</small> | ||
### [TS.INCRBY](https://redis.io/commands/ts.incrby/) | ||
|
||
Increase the value of the sample with the maximum existing timestamp, or create a new sample with a value equal to the value of the sample with the maximum existing timestamp with a given increment | ||
|
||
#### [TS.DECRBY](https://redis.io/commands/ts.decrby/) <small>(not implemented)</small> | ||
### [TS.DECRBY](https://redis.io/commands/ts.decrby/) | ||
|
||
Decrease the value of the sample with the maximum existing timestamp, or create a new sample with a value equal to the value of the sample with the maximum existing timestamp with a given decrement | ||
|
||
#### [TS.CREATERULE](https://redis.io/commands/ts.createrule/) <small>(not implemented)</small> | ||
### [TS.CREATERULE](https://redis.io/commands/ts.createrule/) | ||
|
||
Create a compaction rule | ||
|
||
#### [TS.DELETERULE](https://redis.io/commands/ts.deleterule/) <small>(not implemented)</small> | ||
### [TS.DELETERULE](https://redis.io/commands/ts.deleterule/) | ||
|
||
Delete a compaction rule | ||
|
||
#### [TS.RANGE](https://redis.io/commands/ts.range/) <small>(not implemented)</small> | ||
### [TS.RANGE](https://redis.io/commands/ts.range/) | ||
|
||
Query a range in forward direction | ||
|
||
#### [TS.REVRANGE](https://redis.io/commands/ts.revrange/) <small>(not implemented)</small> | ||
### [TS.REVRANGE](https://redis.io/commands/ts.revrange/) | ||
|
||
Query a range in reverse direction | ||
|
||
#### [TS.MRANGE](https://redis.io/commands/ts.mrange/) <small>(not implemented)</small> | ||
### [TS.MRANGE](https://redis.io/commands/ts.mrange/) | ||
|
||
Query a range across multiple time series by filters in forward direction | ||
|
||
#### [TS.MREVRANGE](https://redis.io/commands/ts.mrevrange/) <small>(not implemented)</small> | ||
### [TS.MREVRANGE](https://redis.io/commands/ts.mrevrange/) | ||
|
||
Query a range across multiple time-series by filters in reverse direction | ||
|
||
#### [TS.GET](https://redis.io/commands/ts.get/) <small>(not implemented)</small> | ||
### [TS.GET](https://redis.io/commands/ts.get/) | ||
|
||
Get the sample with the highest timestamp from a given time series | ||
|
||
#### [TS.MGET](https://redis.io/commands/ts.mget/) <small>(not implemented)</small> | ||
### [TS.MGET](https://redis.io/commands/ts.mget/) | ||
|
||
Get the sample with the highest timestamp from each time series matching a specific filter | ||
|
||
#### [TS.INFO](https://redis.io/commands/ts.info/) <small>(not implemented)</small> | ||
### [TS.INFO](https://redis.io/commands/ts.info/) | ||
|
||
Returns information and statistics for a time series | ||
|
||
#### [TS.QUERYINDEX](https://redis.io/commands/ts.queryindex/) <small>(not implemented)</small> | ||
### [TS.QUERYINDEX](https://redis.io/commands/ts.queryindex/) | ||
|
||
Get all time series keys matching a filter list | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.