This PR uses substr search on name and description fields in the Experiment autocomplete search API, because trigram searches on name and description fields don't work very well when name and/or description fields in an experiment is a long string. (The trigram similarity score depends not only on the number of matched trigrams but also on the original string's length.)
This PR uses substr search on
name
anddescription
fields in theExperiment
autocomplete search API, because trigram searches onname
anddescription
fields don't work very well whenname
and/ordescription
fields in an experiment is a long string. (The trigram similarity score depends not only on the number of matched trigrams but also on the original string's length.)