Igor Malinovskiy

Results 57 comments of Igor Malinovskiy

Hi @Ernest0x Thank you for your interest in RedisTimeSeries and for doing extensive research about cluster awareness in this module. Let me prepare an example in `redis-py` of how to...

Hello @Ernest0x Thanks for submitting the PR! I asked redis-py team to review it. Here is a full example of how to use `TS.MGET` command on the OS Redis Cluster...

Hi @qsymmachus As @enjoy-binbin mentioned above, ioredis is a mature project with no critical issues. To make the project even more stable, we are working on a maintenance release to...

@kibertoad Thanks for the question! The article you refer to is 3 years old and has no source code that allows us to reproduce the results, except for showing the...

@kibertoad As I pointed out above, the article refers to the state where Node-Redis **was three years ago**; since then, It has been rewritten. You can see it if you...

@mp911de JSON in Redis is becoming an industry standard available in Enterprise offerings like Redis Enterprise, [AWS ElastiCache](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/json-gs.html) and [MemoryDB](https://docs.aws.amazon.com/memorydb/latest/devguide/json-gs.html). Considering the fact that Spring Data Redis is an essential...

@mp911de May I ask if there is a specific reason why only features available under a particular license are being supported? I'm having a difficult time understanding the difference between...

@mp911de please see my reply here https://github.com/spring-projects/spring-data-redis/issues/2547#issuecomment-1506829035. Thanks!

@splurring the recommended way to do this nowadays is: ```python from redis import Redis from redis.commands.json.path import Path r = Redis() pipe = r.pipeline() pipe.json().set('test', Path.root_path(), {1: 1}) pipe.json().get('test', )...

AFAIK, You need to check the first few bytes on the socket without consuming them (call recv() with the MSG_PEEK flag) and see if they look like a TLS ClientHello...