-
Notifications
You must be signed in to change notification settings - Fork 638
docs(synonyms): add synonym list to redirect searches with no results #10163
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
Conversation
# A list of search terms that have (historically) not returned results | ||
# that we can map to existing search terms that we know are good | ||
"md5": ["hashbytes"], | ||
"fetchdf": ["to_pandas", "to_polars", "to_pyarrow"], |
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.
Is this a place we would want to handle better routing of "unique" -> "distinct"? Or is that a docstring change in the distinct
doc to increase the search relevance there?
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.
This is a place to add that, so if someone searches unique
the top hit would be distinct
. I'll add that.
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.
oh, actually, let me test this because I want to see if this just adds distinct
or if it eliminates the valid unique
on Arrays
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.
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.
Nice, ONE_WAY_SYNONYMS
seems like it could get quite large 👀
BIGGER EVERY DAY |
We get a list of "missed searched" from Algolia and we can add synonyms that will point to "better" search terms. Some times we can't know the right context for the missed searches, but these two seemed obvious and the list can grow with time.
We get a list of "missed searched" from Algolia and we can add synonyms
that will point to "better" search terms. Some times we can't know the
right context for the missed searches, but these two seemed obvious and
the list can grow with time.
Fixes #10084.