comparison doc/upgrading.txt @ 5108:67fad01d2009

issue2550653: xapian search, stemming is not working This is a partial fix for the issue. It does make stemming work (so searching for silent will also return docs with silently in them). However to do this we need to lowercase the text so the porter stemmer will work. This means capitalization is not preserved. Tests in test/test_indexer for xapian backend all pass. David Wolever (wolever) did the work.
author John Rouillard <rouilj@ieee.org>
date Mon, 27 Jun 2016 22:10:45 -0400
parents 99e289359798
children cf112b90fa8d
comparison
equal deleted inserted replaced
5107:33ac07a7ef96 5108:67fad01d2009
62 # Force Roundup to use a particular text indexer. 62 # Force Roundup to use a particular text indexer.
63 # If no indexer is supplied, the first available indexer 63 # If no indexer is supplied, the first available indexer
64 # will be used in the following order: 64 # will be used in the following order:
65 # Possible values: xapian, whoosh, native (internal). 65 # Possible values: xapian, whoosh, native (internal).
66 indexer = 66 indexer =
67
68 Stemming improved in Xapian Indexer
69 -----------------------------------
70
71 Stemming allows a search for "silent" also match silently. The Porter
72 stemmer in Xapian works with lowercase English text. In this release we
73 lowercase the documents as they are put into the indexer.
74
75 This means capitalization is not preserved, but produces more hits by
76 using the stemmer.
77
78 You will need to do a roundup-admin reindex if you are using the
79 Xapian full text indexer on your tracker.
80
67 81
68 New config file option 'replyto_address' added 82 New config file option 'replyto_address' added
69 ---------------------------------------------- 83 ----------------------------------------------
70 84
71 A new config file option has been added to let you control the 85 A new config file option has been added to let you control the

Roundup Issue Tracker: http://roundup-tracker.org/