Changes between Version 2 and Version 3 of HibernateSearch


Ignore:
Timestamp:
Dec 1, 2008, 9:54:44 AM (16 years ago)
Author:
heikki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HibernateSearch

    v2 v3  
    1717
    1818A Lucene index is represented by a Directory. We will use a file system directory provider to persistently store the Lucene index; and we will use an in-memory directory provider to use with unit test.
     19
     20----
     21
     22=== Analyzer ===
     23
     24What filters should we use in our Analyzer? What is necessary are at least: !StandardTokenizer, !StandardFilter, and !LowerCaseFilter.
     25
     26Will we use a !StopFilter and if so, how do we decide what (language-dependent )stopwords list to use?
     27
     28Do we use an NGramTokenFilter to help fuzzy searches? How is this better than using !FuzzyQuery at query time?
     29
     30Do we use an ISOLatin1AccentFilter to abstract over accented characters? (heikki: +1)
     31
     32Do we use a !PhoneticFilter? If so how does this work, with different languages and all?
     33
     34Do we use a !SynonymFilter? The language dependent issue is relevant here, again.
     35
     36Do we use a !SnowballFilter (stemming) ? Again, how will we deal with the different languages?
     37
     38
     39
     40
     41