Sha256: 11d663368b9765da5b8ddaf06b9d5c27e57b5aea10a111c292ef52fc327a36d1

Contents?: true

Size: 1.19 KB

Versions: 8

Compression:

Stored size: 1.19 KB

Contents

#
# Sphinx/Ultrasphinx user-configurable options.
#
# Copy this file to RAILS_ROOT/config/ultrasphinx.
# You can use individual namespaces if you want (e.g. "development.base").
#

indexer
{
  # Indexer running options
  mem_limit = 256M 
}

searchd
{
  # Daemon options
  # What interface the search daemon should listen on and where to store its logs
  address = 0.0.0.0
  port = 3312
  log = /opt/local/var/db/sphinx/log/searchd.log
  query_log = /opt/local/var/db/sphinx/log/query.log
  read_timeout = 5
  max_children = 300
  pid_file = /opt/local/var/db/sphinx/log/searchd.pid
  max_matches = 100000
}

client
{
  # Client options
  # How your application connects to the search daemon (not necessarily the same as above)
  server_host = localhost
  server_port = 3312
}

source
{
  # Individual SQL source options
  sql_range_step = 20000   
  strip_html = 0
  index_html_attrs =
  sql_query_post =
}

index
{
  # Index building options
  path = /opt/local/var/db/sphinx/
  docinfo = extern # just leave this alone
  morphology = stem_en
  stopwords = # /path/to/stopwords.txt
  min_word_len = 1
  charset_type = utf-8 # or sbcs (Single Byte Character Set)
  charset_table = 0..9, A..Z->a..z, -, _, ., &, a..z,
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ultrasphinx-1.5.3 test/config/ultrasphinx/test.base
ultrasphinx-1.6.7 test/config/ultrasphinx/test.base
ultrasphinx-1.5 test/config/ultrasphinx/test.base
ultrasphinx-1.5.2 test/config/ultrasphinx/test.base
ultrasphinx-1.5.1 test/config/ultrasphinx/test.base
ultrasphinx-1.8 test/config/ultrasphinx/test.base
ultrasphinx-1.7 test/config/ultrasphinx/test.base
ultrasphinx-1.6 test/config/ultrasphinx/test.base