forked from jprante/elasticsearch-plugin-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CREDITS.txt
33 lines (22 loc) · 1.7 KB
/
CREDITS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
The plugin bundle wouldn't be possible without the hard work of many authors
who generously published their work under an open source license.
This file should contain all the credits to them. If you miss a credit, please
notify me about it and it will be added as soon as possible.
The ICU analysis is heavily based on Apache Lucene ICU
https://github.com/apache/lucene-solr/tree/master/lucene/analysis/icu
The AutoPhraseTokenFilter is derived from
https://github.com/lucidworks/auto-phrase-tokenfilter
The ConcatTokenFilter is authored by Sujit Pal and was taken from
http://sujitpal.blogspot.de/2011/07/lucene-token-concatenating-tokenfilter_30.html
The Decompound token filter is a reworked implementation of the
link:http://wortschatz.uni-leipzig.de/~cbiemann/software/toolbox/Baseforms%20Tool.htm[Baseforms Tool]
found in the http://wortschatz.uni-leipzig.de/~cbiemann/software/toolbox/index.htm[ASV toolbox]
of http://asv.informatik.uni-leipzig.de/staff/Chris_Biemann[Chris Biemann],
Automatische Sprachverarbeitung of Leipzig University.
The FSA in package org.xbib.elastixsearch.common.fsa which provides the dictionary structure for
the baseform tokenizer is a derived version of
https://github.com/morfologik/morfologik-stemming/tree/master/morfologik-fsa/src/main/java/morfologik/fsa
Thanks to GBI-Genios Deutsche Wirtschaftsdatenbank GmbH for adding the caching-functionality and the "Exact phrase matches".
The implementation of an exact phrase match query can ignore/skip decompounded tokens while matching phrases.
The LFU cache for the Patricia Decompounder was inspired by the use of ConcurrentHashMap cache
in the original pull request: https://github.com/jprante/elasticsearch-analysis-decompound/pull/54/