]> git.openstreetmap.org Git - nominatim.git/commitdiff
reduce search depth when splitting word sets
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 12 Oct 2016 18:09:20 +0000 (20:09 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 12 Oct 2016 18:09:20 +0000 (20:09 +0200)
Too many out-of-memory conditions with the current algorithm.

lib/lib.php

index 092965baa27123c5cf21f64d3728646a71f9201f..e14f52f9327bc632af7952b19d3bea0c470224b6 100644 (file)
@@ -55,7 +55,7 @@ function getWordSets($aWords, $iDepth)
 {
     $aResult = array(array(join(' ', $aWords)));
     $sFirstToken = '';
-    if ($iDepth < 8) {
+    if ($iDepth < 7) {
         while (sizeof($aWords) > 1) {
             $sWord = array_shift($aWords);
             $sFirstToken .= ($sFirstToken?' ':'').$sWord;