I would like to add different types to my Timeseries database. For example, I may want to store a byte string or hashmodel but it seems like it can't and instead I get redis.exceptions.ResponseError: TSDB: invalid value
Is there not a way to add other types other than values in RedisTimeseries?
You cannot. Each sample must be composed of a 64-bit integer timestamp (milliseconds since the UNIX epoch) and a 64-bit floating-point value. That's it.