Less entries of global search compared to column name (example Search API (regular expressions))

Less entries of global search compared to column name (example Search API (regular expressions))

RobertEckerRobertEcker Posts: 6Questions: 3Answers: 0

Why are less entries found when i use the global search compared to a specific column?

Answers

  • allanallan Posts: 63,478Questions: 1Answers: 10,467 Site admin

    Because of the $ end character. The global search does the search on a concatenated string containing the data of all of the searchable columns (source). Its done that way for efficiency of operation of the global search (i.e. one rexeg execution per row rather than one per cell). The disadvantage is that you can't use the start / end regex commands as might be expected.

    Allan

This discussion has been closed.