sewenew

Results 163 comments of sewenew

> make me understand the idea With redis-protobuf, you can only get and set protobuf object. However, you cannot index and search these object. Say, I want to find all...

It sounds interesting. If you have problems on redis-protobuf, feel free to let me know :) Regards

Hi @jack1582 I did some tests before. It runs faster than RedisJSON, and use much less memory. However, I don't have any records for the test on hand. Sorry for...

> the idea would be to add a pb.get key --format geobuf option which would encode a geojson.proto object into geobuf, Sorry, but I didn't get the idea quit clearly....

Sorry for the late reply. It looks good to me to make redis-protobuf support Geobuf format. It will be better if Geobuf has a detailed specification (or I missed it?)....

@badarihp **Advertisement**: If you're using C++, I wrote a C++ client, i.e. [redis-plus-plus](https://github.com/sewenew/redis-plus-plus). You can have a try. If you have any problem with it, feel free to let me...

I didn't used CPM before, and I did some research. Looks like it needs FetchContent support. However, so far, redis-plus-plus does not support FetchContent feature. So it looks like that...

What do you mean by including redis-plus-plus by src? B.T.W. instead of FetchContent, you can use ExternalProject feature of cmake to include redis-plus-plus. [this issue](https://github.com/sewenew/redis-plus-plus/issues/214) gives an example, and hope...

Great! Thanks a lot for your work! I'll take a try! Regards

Please try the following code to do a benchmark testing: ``` vector prepare(AsyncRedisCluster &r, int key_num, int key_len, int value_len) { std::default_random_engine engine(std::random_device{}()); std::uniform_int_distribution uniform_dist(0, 25); vector keys; string value(value_len,...