agoragames / kairos

Python module for time series data in Redis and Mongo
BSD 3-Clause "New" or "Revised" License
207 stars 38 forks source link

Redis Histogram insert : be able to change the incr value #61

Open malletjo opened 8 years ago

malletjo commented 8 years ago

Right now, the increment value is always 1 (hardcoded)

def _type_insert(self, handle, key, value): ''' Insert the value into the series. ''' handle.hincrby(key, value, 1)