]> git.openstreetmap.org Git - nominatim.git/commitdiff
respect --osm2pgsql-cache setting
authorSarah Hoffmann <lonvia@denofr.de>
Sat, 8 Aug 2015 16:15:14 +0000 (18:15 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sat, 8 Aug 2015 16:15:14 +0000 (18:15 +0200)
fixes #260

utils/setup.php

index 3fad6fe80bc4e09e74a6ce260c845d723d8cf790..14fe675e9c2173b79a6298fc673b44c53739a4df 100755 (executable)
        }
 
        // Assume we can steal all the cache memory in the box (unless told otherwise)
-       $iCacheMemory = (isset($aCMDResult['osm2pgsql-cache'])?$aCMDResult['osm2pgsql-cache']:getCacheMemoryMB());
-       if ($iCacheMemory > getTotalMemoryMB())
+       if (isset($aCMDResult['osm2pgsql-cache']))
+       {
+               $iCacheMemory = $aCMDResult['osm2pgsql-cache'];
+       }
+       else
        {
                $iCacheMemory = getCacheMemoryMB();
-               echo "WARNING: resetting cache memory to $iCacheMemory\n";
        }
 
        $aDSNInfo = DB::parseDSN(CONST_Database_DSN);