-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
move sortable and no_index to the field field abstract… #118
Conversation
redisearch/client.py
Outdated
if no_index and not sortable: | ||
raise ValueError('Non-Sortable non-Indexable fields are ignored') | ||
Field.__init__(self, name, *args) | ||
Field.__init__(self, name, *args, **kwargs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usually you put the call to the father as the first call in the constructor. Maybe we can call it first and create an add_arg function of the father that the child can use to add the extra arguments after? WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not just use self.args.append
directly (instead of adding the add_arg
function)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, the sortable and no_index flags (which being added in Field.__init__
) should be at the end
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly because of that, if you expose it as a method then it's an API and the father can decide to implement it anyway it wants. He can save it on a separate array and manage the arguments positions (for example)..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
Small comment, let me know what you think.
Also, we need to add tests to verify we can add sortable and no_index on all fields type.
Kudos, SonarCloud Quality Gate passed!
|
will fix #34 and #116