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
StudentName = 'First' + 'Middle' + 'Last'
If we search for any combination of these three strings, other than the one given in the original data, we don't get the desired results.
Example:
StudentName = 'Bhuvan Singla'
Search = 'Singla Bhuvan'
The problem can be resolved by modifying the filter of search_service to match the individual components ie. each space separated terms in "term" / search query to the names of students in json file.
eg: For "Som Tambe"; filter returns true since "Som" and "Tambe" are both present as substr in "Som Vishwas Tambe".
The text was updated successfully, but these errors were encountered:
Sol to pclubiitk/student-search#26
Issue:
The problem can be resolved by modifying the filter of search_service to match the individual components ie. each space separated terms in "term" / search query to the names of students in json file.
eg: For "Som Tambe"; filter returns true since "Som" and "Tambe" are both present as substr in "Som Vishwas Tambe".
The text was updated successfully, but these errors were encountered: