1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# RedisTimeSeries `timeseries` commands (17/17 implemented)
## [TS.ADD](https://redis.io/commands/ts.add/)
Append a sample to a time series
## [TS.ALTER](https://redis.io/commands/ts.alter/)
Update the retention, chunk size, duplicate policy, and labels of an existing time series
## [TS.CREATE](https://redis.io/commands/ts.create/)
Create a new time series
## [TS.CREATERULE](https://redis.io/commands/ts.createrule/)
Create a compaction rule
## [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.DEL](https://redis.io/commands/ts.del/)
Delete all samples between two timestamps for a given time series
## [TS.DELETERULE](https://redis.io/commands/ts.deleterule/)
Delete a compaction rule
## [TS.GET](https://redis.io/commands/ts.get/)
Get the sample with the highest timestamp from a given time series
## [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.INFO](https://redis.io/commands/ts.info/)
Returns information and statistics for a time series
## [TS.MADD](https://redis.io/commands/ts.madd/)
Append new samples to one or more time series
## [TS.MGET](https://redis.io/commands/ts.mget/)
Get the sample with the highest timestamp from each time series matching a specific filter
## [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/)
Query a range across multiple time-series by filters in reverse direction
## [TS.QUERYINDEX](https://redis.io/commands/ts.queryindex/)
Get all time series keys matching a filter list
## [TS.RANGE](https://redis.io/commands/ts.range/)
Query a range in forward direction
## [TS.REVRANGE](https://redis.io/commands/ts.revrange/)
Query a range in reverse direction
|