Displaying 6 results from an estimated 6 matches for "hyphenfilter".
2006 Oct 20
2
Bug in search matching ?
Hi :)
Here''s a little code reproducing something that i consider as a bug, if
it''s not please explain :]
http://pastie.caboo.se/18693
Thanks by advance,
Cheers,
J?r?mie ''ahFeel'' BORDIER
--
Posted via http://www.ruby-forum.com/.
2007 Mar 01
4
Need help creating my own Filter in Ruby
Hi,
I posted a Trac ticket about it, but I thought I''d ask the mailing
list to reach more people.
I''m using these filters together in my analyzer (with acts_as_ferret
+ Ferret 0.11.1).
HyphenFilter.new(
StopFilter.new(
LowerCaseFilter.new(
MappingFilter.new(
StandardTokenizer.new(str),
mapping)),
FULL_FRENCH_STOP_WORDS + FULL_ENGLISH_STOP_WORDS)
)
The mapping...
2007 Jun 25
4
Ignore apostrophes in words
Hi, I just started using ferret and the aaf plugin and it seems to work
quite nicely. However, my fields are very short (titles of music) and I
don''t think may users will be typing in apostrophes when they are
looking for something. Right now, for a simple document such as "what
i''ve done" I''d like it to be indexed as "what ive done" instead. Right
2007 Jul 14
1
performance bottleneck
I have got my database in Mysql. I used ferret to index a table with 10
million rows. On limiting the selection of data to 1000 initial retrieval,
it takes 200 seconds but for the whole table it took more than four hours
and after which i had to close my indexing application. I used the
StandardAnalyser for it. There is no problem from the database side as
retrieval of all the data in the table
2006 Sep 08
8
Ferret-0.10.3 released
Hey all,
I''ve just released Ferret 0.10.3. It is mostly just a bugfix release.
I''ve also added Ferret::Analysis::HyphenFilter which filters
hyphenated words for better search results. Basically the way it works
is it concatenates a hyphenated word as well as adding the two
separate terms. So "set-up" becomes "setup", "set", "up" so searches
for "set-up", "setup"...
2006 Jul 26
13
tweaking minimum word length?
Hi,
Can Ferret be configured to change the minimum word length of what it
indexes? Right now it seems to drop words 3 characters or less, but
I''d like to include words going down to 2 characters. How would I do
that?
Francis