Changes between Version 3 and Version 4 of MultilingualIndexMechanism


Ignore:
Timestamp:
Jul 3, 2009, 5:19:56 AM (15 years ago)
Author:
fxp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MultilingualIndexMechanism

    v3 v4  
    112112Allowing advanced functionnality is not used for now in GeoNetwork (Stop words, scoring over multiple language, multi analyzer support)..
    113113
     114
     115=== Index ===
     116One index by language is created and specific language analyzer could be define (eg. FrenchAnalyzer, GermanAnalyzer provided by Lucene).
     117Lucene index is stored in WEB-INF/lucene directory :
     118{{{
     119lucene
     120 +-- nonspatial_eng
     121 +-- nonspatial_fra
     122 +-- nonspatial_deu
     123}}}
     124
     125Metadata indexing is done in default language using index-fields.xsl and multilingual content using language-index-fields.xsl which will extract all fragments to be stored in index.
     126
     127More details on indexing mechanism MultilingualIndexMechanism .
     128
     129=== Search ===
     130Search is done using a MultiSearcher (ie. in all index) and the index corresponding to GUI language is "boost" to be on top.
     131A duplicate filter filter search result in order to not to have duplicate in results as one record will appear in more than on index.
     132
     133