-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Feature request - conditional decode of response #2164
Comments
This issue is marked stale. It will be closed in 30 days if it is not updated. |
@DvirDukhan |
agree with @gerzse to selectively decode fields bound to a search index, knowledge of the search schema will be required which would be very intrusive/tightly-bound. |
I think this request is valid to 3 types of response that returns a map type of response, and the data could be binary:
IMO, having a callback will add complexity as you offload a lot of responsibility to the end user, unless I'm missing something. |
I think I got it. The new parameter would act like an override of the It would be more involved in the code, but that's fine. I think right now the Since we are discussing decoding, should we factor in charsets, in case someone wants to decode in something different than UTF-8 for example? |
@DvirDukhan I see your point now. Yeah, that makes sense. The callbacks will be too cumbersome IMO, I like the "fields to not decode param" approach |
Something like the following would work? (
|
Usage-wise would defaulting to |
Makes sense. Apparently, everything is decoded regardless of decode_responses set at the connection level. |
@gerzse You are right on the first part. For the second part I think this is a different topic, since it can be applicable for every command :) But IMO, in order to be future proof you can pass an object r = Redis()
r.hget(...., decoding_context = {binary_fields = ['a', 'b', 'c'], decode_charset = ....}) |
I think we're mixing two separate use cases here. Search results decoding at the field level is one issue, and giving control over decoding per command is another. Here is a fix for Vector fields #3309 |
Currently, Redis-py allows decoding of the entire response, or not decoding the entire response. In the situation where a hash/stream/document entries are mixed with human-readable and non human-readable data (blobs), the user must avoid using
decode_responses
, and decode the human-readable data manually.The feature request is to allow specifying field names which are avoided from being decoded when
decode_responses
isTrue
The text was updated successfully, but these errors were encountered: