Sha256: 507c5af1d2a3363e878bead48dbd50095686ca3bb397f686fbf3c9dd2f879bb2

Contents?: true

Size: 1004 Bytes

Versions: 4

Compression:

Stored size: 1004 Bytes

Contents

indexer
{
  mem_limit = 64M
}

searchd
{
  port          = 3313
  log           = <%= @path %>/fixtures/sphinx/searchd.log
  query_log     = <%= @path %>/fixtures/sphinx/searchd.query.log
  read_timeout  = 5
  max_children  = 30
  pid_file      = <%= @path %>/fixtures/sphinx/searchd.pid
}

source peoples
{
  type 	    = mysql
  sql_host  = <%= @host %>
  sql_user  = <%= @username %>
  sql_pass  = <%= @password %>
  sql_db    = riddle

  sql_query           = SELECT id, first_name, middle_initial, last_name, gender, street_address, city, state, postcode, email, UNIX_TIMESTAMP(birthday) AS birthday FROM people WHERE id >= $start AND id <= $end
  sql_query_range     = SELECT MIN(id), MAX(id) FROM people
  sql_query_info      = SELECT * FROM people WHERE id = $id
  sql_attr_timestamp  = birthday
}

index people
{
  source          = peoples
  morphology      = stem_en
  path            = <%= @path %>/fixtures/sphinx/people
  charset_type    = utf-8
  enable_star     = 1
  min_prefix_len  = 1
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
riddle-1.0.3 spec/fixtures/sphinx/configuration.erb
riddle-1.0.2 spec/fixtures/sphinx/configuration.erb
riddle-1.0.1 spec/fixtures/sphinx/configuration.erb
riddle-1.0.0 spec/fixtures/sphinx/configuration.erb