yoav-steinberg

Results 28 comments of yoav-steinberg

Did some profiling and a quick patch with: https://github.com/teepark/python-lzf resulting in x2 performance boost.

You can also consider including the c files from the liblzf directly in redis-rdb-tools instead of adding a dependency. It is fairly common to have liblzf files included inside a...

Looking at how [s3cmd](https://github.com/s3tools/s3cmd) overcomes the issue of figuring out where a bucket is located before actually accessing it I found the following s3 feature: http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETlocation.html This can enable us...

Here's my workaround for a generic (region safe) get_bucket, hope this helps someone: ``` python import xml.etree.ElementTree as ET def get_bucket(aws_key, aws_secret, bucketname): conn = S3Connection(aws_key, aws_secret, host='s3.amazonaws.com') bucket =...

This is mentioned in the `GETRANGE` documentation. I think since this was **so** long ago and isn't even documented for over 10 years we might prefer leaving it undocumented and...

@itamarhaber I'm not exactly sure what you mean by "internal" flag but can you open a ticket/PR for this in the redis repo. I'll go ahead and close this one....

My 1 drachma: I think, given this was deprecated years ago we can chuck it and advertise this as a breaking change in v7.0. I know it might break apps,...

I think the issue happens when you have a complex subcommand which has more than one argument but can appear multiple time. Relevant commands are `BITFIELD` and `BITFIELD_RO`. If there...

> I test in `help.h`, it is `key GET type offset [GET type offset ...]`. Yes, that's the correct usage of the command but for some reason when specifying `"multiple":true`...

Recreates for me (chromium and firefox). Apply following patch, run the site and go to: http://localhost:9292/commands/bitfield_ro ```diff diff --git a/commands.json b/commands.json index 4f40282..4fb49e0 100644 --- a/commands.json +++ b/commands.json @@ -278,7...