Value |
RedisTimeSeries.get(String key) |
TS.GET key
|
Value[] |
Range.getValues() |
|
protected static Value[] |
Range.parseRange(List<Object> range) |
|
protected static Value |
Value.parseValue(List<Object> tuple) |
|
Value[] |
RedisTimeSeries.range(String key,
long from,
long to) |
TS.RANGE key fromTimestamp toTimestamp
|
Value[] |
RedisTimeSeries.range(String key,
long from,
long to,
int count) |
TS.RANGE key fromTimestamp toTimestamp [COUNT count]
|
Value[] |
RedisTimeSeries.range(String key,
long from,
long to,
Aggregation aggregation,
long timeBucket) |
TS.RANGE key fromTimestamp toTimestamp [AGGREGATION aggregationType timeBucket]
|
Value[] |
RedisTimeSeries.range(String key,
long from,
long to,
Aggregation aggregation,
long timeBucket,
int count) |
TS.RANGE key fromTimestamp toTimestamp [COUNT count] [AGGREGATION aggregationType timeBucket]
|
Value[] |
RedisTimeSeries.revrange(String key,
long from,
long to) |
TS.REVRANGE key fromTimestamp toTimestamp
|
Value[] |
RedisTimeSeries.revrange(String key,
long from,
long to,
int count) |
TS.REVRANGE key fromTimestamp toTimestamp [COUNT count]
|
Value[] |
RedisTimeSeries.revrange(String key,
long from,
long to,
Aggregation aggregation,
long timeBucket) |
TS.REVRANGE key fromTimestamp toTimestamp [AGGREGATION aggregationType timeBucket]
|
Value[] |
RedisTimeSeries.revrange(String key,
long from,
long to,
Aggregation aggregation,
long timeBucket,
int count) |
TS.REVRANGE key fromTimestamp toTimestamp [AGGREGATION aggregationType timeBucket] [COUNT
count]
|