We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 ( https://github.com/RedisAI/redisai-py/pull/35/files ) enforces a chunk size of 512mb. We should address this ( or at least be aware of the limitations/issues that can arise from the current config )
The text was updated successfully, but these errors were encountered:
@filipecosta90 can we get this value from CONFIG GET command?
CONFIG GET
Sorry, something went wrong.
yes :
127.0.0.1:6379> config get proto-max-bulk-len 1) "proto-max-bulk-len" 2) "536870912"
No branches or pull requests
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 ( https://github.com/RedisAI/redisai-py/pull/35/files ) enforces a chunk size of 512mb. We should address this ( or at least be aware of the limitations/issues that can arise from the current config )
The text was updated successfully, but these errors were encountered: