redistimeseries-py icon indicating copy to clipboard operation
redistimeseries-py copied to clipboard

RedisTimeSeries python client

Results 14 redistimeseries-py issues
Sort by recently updated
recently updated
newest added

Version: Redis-py 4.14 Platform: Python 3.8.3 on MacOS Big Sur Description: According to https://github.com/RedisTimeSeries/redistimeseries-py#user-content-deprecation-notice The features from redistimeseries package have merged into the redis-py module, however we are failing to...

help wanted

Any plans for implementing async calls ?

`TS.ADD` supports setting `DUPLICATE_POLICY` as well as/independently from `ON_DUPLICATE`. The two have separate behaviors -- `DUPLICATE_POLICY` sets the default for the key of `TS.ADD` does an implicit create, and `ON_DUPLICATE`...

Hi, I am using Redis for the first time so I don't have a lot of understanding of how this works in python. I have a dictionary with multiple keys...

I use this module to stream IoT data to a real-time monitoring application. The storage size of the data grows exponentially with the amount of connected devices, so it's important...

question

Hi, I am not sure if I am doing something wrong here but it seems like this is a bug in `parse_m_get`. I am created a single time series with...

bug

Hi, I am trying to run something like: ```python pipeline = time_series_client.pipeline(transaction=False) for key in my_list_of_keys: pipeline.get(key) my_data = pipeline.execute() ``` This does not work, I could not find tests...

help wanted