Based on observations/reverse engineering, it looks like the search field on rustaceans.org attempts find records with a (case-folded) text match for every word in the search.
It also does not seem to attempt to include the Notes record fields in its search.
For example, searching for Felix Klock currently yields zero results. However, searching for either Felix or Klock yields my record. (And if you look at my record, you can see I have put "Felix Klock" into its Notes field to try to work around this.)
While it would be good to prioritize the results returned by the current search algorithm, it would be good to also include the results of a looser search, especially when the current search algorithm yields zero results. As an example of a looser search algorithm, we could look for records with any of the requested words, and take the union of the resulting sets of record.
Based on observations/reverse engineering, it looks like the search field on
rustaceans.orgattempts find records with a (case-folded) text match for every word in the search.It also does not seem to attempt to include the
Notesrecord fields in its search.For example, searching for
Felix Klockcurrently yields zero results. However, searching for eitherFelixorKlockyields my record. (And if you look at my record, you can see I have put"Felix Klock"into itsNotesfield to try to work around this.)While it would be good to prioritize the results returned by the current search algorithm, it would be good to also include the results of a looser search, especially when the current search algorithm yields zero results. As an example of a looser search algorithm, we could look for records with any of the requested words, and take the union of the resulting sets of record.