Filipe Oliveira (Personal)

Results 181 issues of Filipe Oliveira (Personal)

Sample example that can be used as reference: https://github.com/RedisBloom/redisbloom-go/blob/master/example_client_test.go#L11 Further reference for commands: https://oss.redislabs.com/redisbloom/Cuckoo_Commands/ to check locally the documentation effects ``` # start http service godoc -http=:6060 # open browser...

documentation

## Problem The codahale/hdrhistogram repo has been transferred under the github HdrHstogram umbrella with the help from the original author in Sept 2020 (new repo url https://github.com/HdrHistogram/hdrhistogram-go). The main reasons...

Given https://github.com/redis/redis/blob/unstable/redis.conf#L1854 there might be cases in which we have a Redis instance with a max string size of 1,2,10mb.... The hotfix that added modelset chunking to the client (...

bug

Before we did not check that the allocation was indeed successful of the underlying data structure. This PR fixes it and adds tests to confirm we're indeed replying with an...

bug

Given https://github.com/RedisBloom/RedisBloom/pull/285 there is the following set of commands we should enable: - `TDIGEST.CREATE`: Allocate a new histogram - `TDIGEST.RESET`: Empty out a histogram and re-initialize it - `TDIGEST.ADD`: Add...

The following PR https://github.com/RedisTimeSeries/RedisTimeSeries/pull/617 added support for multi-series aggregations to RedisTimeSeries. It adds `GROUPBY REDUCE ` to `TS.MRANGE/TS.MREVRANGE`. It accepts `SUM`, `MIN`, `MAX` reducers and works with unaligned series. ####...

## Problem The codahale/hdrhistogram repo has been transferred under the github HdrHstogram umbrella with the help from the original author in Sept 2020 (new repo url https://github.com/HdrHistogram/hdrhistogram-go). The main reasons...

The following PR https://github.com/RedisTimeSeries/RedisTimeSeries/pull/617 added support for multi-series aggregations to RedisTimeSeries. It adds `GROUPBY REDUCE ` to `TS.MRANGE/TS.MREVRANGE`. It accepts `SUM`, `MIN`, `MAX` reducers and works with unaligned series. ####...

enhancement

The following PR https://github.com/RedisTimeSeries/RedisTimeSeries/pull/617 added support for multi-series aggregations to RedisTimeSeries. It adds `GROUPBY REDUCE ` to `TS.MRANGE/TS.MREVRANGE`. It accepts `SUM`, `MIN`, `MAX` reducers and works with unaligned series. ####...

Hi there @antirez , this PR enables building rax in debug and coverage modes by passing DEBUG=1 COV=1 environment variables. The reason I opened this PR was that the DEBUG...