Matt Duszynski
Matt Duszynski
The default redis client is a single instance of a single-threaded client, so using multiple time-series in parallel would be blocking. Should add support for the `ConnectionPool` gem to yield...
The new https://github.com/redis-rb/redis-client gem is a much simpler and lighter-weight implementation of a Ruby redis client, and drops support for older versions. This module already relies heavily on the low-level...
Closes #12
Right now, any object responding to `.to_s` can be used as a time series label, and while that implicitly means any object at all can be used by virtue of...
Right now, the result of queries like `TS.RANGE` is an array of value objects. To make this more user-friendly for using the raw data (e.g. displaying on a chart), it...