MCPcopy
hub / github.com/redis/redis-py / ts

Method ts

redis/commands/redismodules.py:46–54  ·  view source on GitHub ↗

Access the timeseries namespace, providing support for redis timeseries data.

(self)

Source from the content-addressed store, hash-verified

44 return s
45
46 def ts(self) -> TimeSeries:
47 """Access the timeseries namespace, providing support for
48 redis timeseries data.
49 """
50
51 from .timeseries import TimeSeries
52
53 s = TimeSeries(client=self)
54 return s
55
56 def bf(self) -> BFBloom:
57 """Access the bloom namespace."""

Callers 15

dt_time_series.pyFile · 0.45
test_createFunction · 0.45
test_alterFunction · 0.45
test_addFunction · 0.45
test_add_on_duplicateFunction · 0.45
test_maddFunction · 0.45

Calls 1

TimeSeriesClass · 0.85

Tested by 15

test_createFunction · 0.36
test_alterFunction · 0.36
test_addFunction · 0.36
test_add_on_duplicateFunction · 0.36
test_maddFunction · 0.36
test_incrby_decrbyFunction · 0.36