freelancing-god / thinking-sphinx

Sphinx plugin for Rails and Merb

This URL has Read+Write access

thinking-sphinx / install.rb
100644 18 lines (15 sloc) 0.586 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
puts <<-MESSAGE
With the release of Thinking Sphinx 1.1.18, there is one important change to
note: previously, the default morphology for indexing was 'stem_en'. The new
default is nothing, to avoid any unexpected behavior. If you wish to keep the
old value though, you will need to add the following settings to your
config/sphinx.yml file:
 
development:
morphology: stem_en
test:
morphology: stem_en
production:
morphology: stem_en
 
To understand morphologies/stemmers better, visit the following link:
http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
 
MESSAGE