Go to the first, previous, next, last section, table of contents.
The search mechanism of Catalog is implemented using the regexp operator
of MySQL. For instance, when searching for the word foobar
, the regexp used will be:
REGEXP '[[:<:]][fF][oO][oO][bB][aA][rR][[:>:]]'
This basically means that only the isolated foobar
word will be found and not the
word foobarnitz
, See section Catalog search (csearch).
This method can be really slow if the catalog contains a lot of data. We are working on this.
If the encoding of the catalog is not ISO-8859-* a the query is taken to be only one word and is searched using the SQL truncation operators, See section Catalog configuration file.
like '%word1 word2%'
Go to the first, previous, next, last section, table of contents.