X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=build%2Fsherlock.cfg;h=bb92a153cddee7482e8a01472fe66bd3db2b5de4;hb=6829bc0163f6ecfc8ae70ee7b3ce2b79e7484dfe;hp=8ef39f0298257944eb3d2edb3ed85bbf1cbc86ff;hpb=49c1f15801aafbff49bd6c5d32d3c10d60375e14;p=libucw.git diff --git a/build/sherlock.cfg b/build/sherlock.cfg index 8ef39f02..bb92a153 100644 --- a/build/sherlock.cfg +++ b/build/sherlock.cfg @@ -1,11 +1,11 @@ # Configuration variables of Sherlock and their default values -# (c) 2005 Martin Mares +# (c) 2005--2006 Martin Mares # Version of the whole package -Set("SHERLOCK_VERSION" => "3.6"); +Set("SHERLOCK_VERSION" => "3.9"); # Installation directory for `make install' -Set("INSTALL_DIR" => "~/run-3.6"); +Set("INSTALL_DIR" => "~/run-3.9"); # Compile everything with debug information and ASSERT's UnSet("CONFIG_DEBUG"); @@ -52,6 +52,9 @@ UnSet("CONFIG_MUX"); # Support databases >4GB Set("CONFIG_LARGE_DB"); +# Bucket position alignment shift (maximum bucket file size is 4G << this shift) +Set("CONFIG_BUCKET_SHIFT" => 7); + # Number of sections we remember limits for Set("SHERLOCK_NUM_SECTIONS" => 4); @@ -136,6 +139,14 @@ UnSet("CONFIG_PL_STEMMER"); # Dynamic weights UnSet("CONFIG_WEIGHTS"); +# Include the incremental indexer +UnSet("CONFIG_INCREMENTAL"); + +# Maximum number of search servers, databases per search server and route keys +Set("MUX_MAX_SERVERS" => 128); +Set("MUX_MAX_DATABASES_PER_SERVER" => 4); +Set("MUX_MAX_ROUTE_KEYS" => 4); + #endif ### These are internal settings which shouldn't be modified by custom configs ###