You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Searching through questions is currently very primitive. It's simply implemented as:
for question in funcfinder.questions.functions.itervalues():
search_string = (question.__name__ + question.__doc__).lower()
if all(imap(search_string.__contains__, terms)):
There is no indexing to improve speed, fuzzy matching (i.e. users can't make spelling errors or use a synonym that wasn't explicitly inserted by the author), boolean operators, or any other features typically offered by search engines. What would be a good solution to improve search without diminishing the convenience of the funcfinder find command?
The text was updated successfully, but these errors were encountered:
Searching through questions is currently very primitive. It's simply implemented as:
There is no indexing to improve speed, fuzzy matching (i.e. users can't make spelling errors or use a synonym that wasn't explicitly inserted by the author), boolean operators, or any other features typically offered by search engines. What would be a good solution to improve search without diminishing the convenience of the
funcfinder find
command?The text was updated successfully, but these errors were encountered: