Vastly speed up multi-word matches (ie "... ... ...")

This commit is contained in:
Solomon Peachy 2008-10-30 11:17:06 -04:00
parent 08ca315c11
commit bb94b6efc7
2 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ For further information about Photo Organizer, see its web site at:
[add] Generate a full-size image from RAW imports.
[add] Initial background image import/processing worker.
[add] Pretty-URL the folder search too.
[misc] Vastly speed up searching for "multi-word matches"
2.36.1 (September 27, 2008)

View File

@ -104,7 +104,7 @@ function prepare_keyword($keyword, $enable_stemming) {
$keyword = str_replace(";", " ", $keyword);
$keyword = str_replace("#@#", " ", $keyword);
return " =##= '".$keyword."'";
return " ILIKE '%$keyword%'";
}
/* ignore all signle quotation marks */