I would like to use RedisTimeSeries module (latest feature) in Redis from .net core client in Azure.
- I created Azure Cache for Redis (from RedisLabs) (https://azure.microsoft.com/en-us/services/cache/) standard resource in the Azure portal.
- Downloaded the .net redis samples code from https://github.com/rustd/RedisSamples.
- When I compiled samples code, it downloaded the nuget package called StackExchange.Redis (among other libraries).
- Played with samples to understand how redis works from .net client.
- It appears that raw REDIS commands where wrapped by StackExchange.Redis library.
Next, I wanted to play with RedisTimeSeries (as described at https://github.com/RedisTimeSeries/RedisTimeSeries).
The StackExchange.Redis .net library does not seem to provide any API to invoke RedisTimeSeries module related commands such as TS.CREATE, TS.ADD etc.
Here are my questions:
- Is RedisTimeSeries module supported in Azure Cache for Redis (from RedisLabs)?
- If supported, how do I invoke TS related commands from my .net core client?
- If not supported, is there any other .net library that lets me do this?