Mirko Ortensi

Results 13 comments of Mirko Ortensi

The header in the 6.2 folder seems outdated, the header to /redis-6.2.6/src/redismodule.h indeed works

This works for me: it simulates a click to the URL tab and hides the File button. window.addEventListener('click', (e) => { var element = document.querySelector('.toastui-editor-tabs .tab-item[aria-label="URL"]'); if (element) { element.click();...

Hi @remicollet. Thanks for raising the question. Speaking on behalf of Redis Inc., there is no intention to rename this or other client libraries with the Redis name in it....

Thanks for your prompt answer, @Lxstr. Your ideas and scenarios make sense, but I need to determine the best way forward at this time. 1. A Redis-only Flask extension would...

HEXPIRE is supported by Redis 7.4+ and supported by the node-redis client library. https://github.com/redis/node-redis/blob/master/packages/client/lib/commands/HEXPIRE.ts

I have sorted out the lack of support for the conversation history by configuring the system prompt. As a general note, the system prompt should be used to define the...

I will take a look and propose something. I would find it useful to enable more configurations for the index; besides the length and the algorithm, distance and float size...

Hello @Rakeshya-Kore, sharded Pub/Sub does not require RESP3. I wonder if you have found some obsolete documents or threads. If this is the case, please let me know. Support for...

For Redis CE, there is no issue with configuring either RESP2 or RESP3 to use sharded pub/sub. The note refers to Redis Enterprise Software, which means you must enable RESP3...

Something like the following would work? (`decode_field` defaults to false, then it defaults to binary for embeddings) ``` q = Query("(*)=>[KNN 3 @content_embedding $B AS score]")\ .return_field("content_embedding", decode_field=False)\ .return_field("title", decode_field=True,...