TS.获取
TS.GET key [LATEST]
- 可用:
- Redis 堆栈 / TimeSeries 1.0.0
- 时间复杂度:
- O(1)
从给定时间序列中获取具有最高时间戳的样本
必需参数
key
是时间序列的键名称。
可选参数
LATEST
(自 RedisTimeSeries v1.8 起)
当时间序列为 compaction 时使用。跟LATEST
、TS.GET 报告最新(可能是部分)存储桶的压缩值。没有LATEST
、TS.GET 不会报告最新的(可能是部分的)存储桶。当时间序列不是压缩时,LATEST
被忽略。
压缩的最新存储桶中的数据可能是部分的。仅当新样品到达并打开最新的新存储桶时,存储桶才会关闭和压缩。但是,在某些情况下,还需要最新(可能是部分)存储桶的压缩值。在这种情况下,请使用LATEST
.
返回值
返回以下回复之一:
- 单个 (Integer reply, Simple string reply) 对的数组回复,表示具有最高时间戳的样本的 (timestamp, value(double))
- 空 Array 回复 - 当时间序列为空时
- [](参数无效、密钥类型错误、密钥不存在等)
例子
获取城市的最新测量温度
创建一个时间序列来存储 特拉维夫 中测得的温度,并添加 2023 年 1 月 1 日星期日的四个测量值
127.0.0.1:6379> TS.CREATE temp:TLV LABELS type temp location TLV
OK
127.0.0.1:6379> TS.MADD temp:TLV 1672534800 12 temp:TLV 1672556400 16 temp:TLV 1672578000 21 temp:TLV 1672599600 14
Next, get the latest measured temperature (the temperature with the highest timestamp)
127.0.0.1:6379> TS.GET temp:TLV
1) (integer) 1672599600
2) 14
Get latest maximal daily temperature for a city
Create a time series to store the temperatures measured in Jerusalem
127.0.0.1:6379> TS.CREATE temp:JLM LABELS type temp location JLM
OK
Next, create a compacted time series named dailyAvgTemp:JLM containing one compacted sample per 24 hours: the maximum of all measurements taken from midnight to next midnight.
127.0.0.1:6379> TS.CREATE dailyMaxTemp:JLM LABELS type temp location JLM
OK
127.0.0.1:6379> TS.CREATERULE temp:JLM dailyMaxTemp:JLM AGGREGATION max 86400000
OK
Add four measurements for Sun Jan 01 2023 and three measurements for Mon Jan 02 2023
127.0.0.1:6379> TS.MADD temp:JLM 1672534800000 12 temp:JLM 1672556400000 16 temp:JLM 1672578000000 21 temp:JLM 1672599600000 14
1) (integer) 1672534800000
2) (integer) 1672556400000
3) (integer) 1672578000000
4) (integer) 1672599600000
127.0.0.1:6379> TS.MADD temp:JLM 1672621200000 11 temp:JLM 1672642800000 21 temp:JLM 1672664400000 26
1) (integer) 1672621200000
2) (integer) 1672642800000
3) (integer) 1672664400000
Next, get the latest maximum daily temperature; do not report the latest, possibly partial, bucket
127.0.0.1:6379> TS.GET dailyMaxTemp:JLM
1) (integer) 1672531200000
2) 21
Get the latest maximum daily temperature (the temperature with the highest timestamp); report the latest, possibly partial, bucket
127.0.0.1:6379> TS.GET dailyMaxTemp:JLM LATEST
1) (integer) 1672617600000
2) 26
See also
Related topics