diff options
author | Daniel Silverthorn <daniel.silverthorn@amdocs.com> | 2017-08-18 13:24:32 -0400 |
---|---|---|
committer | Daniel Silverthorn <daniel.silverthorn@amdocs.com> | 2017-08-18 13:27:32 -0400 |
commit | d907b91d857f52aa06f8bc00ac8edd4e834e2fab (patch) | |
tree | 1bf5abd17176d810036623178067a097d92060ac /test/csit/plans/aai/search-data-service/appconfig/analysis-config.json | |
parent | dbdc30ad2cd10a1b6a38885f51f64ff169dfe4a4 (diff) |
[AAI-158] csit test for search-data-service
Change-Id: I0c3cca0352c9eb7c7671d1cc7dee9081e61fd66f
Signed-off-by: Daniel Silverthorn <daniel.silverthorn@amdocs.com>
Diffstat (limited to 'test/csit/plans/aai/search-data-service/appconfig/analysis-config.json')
-rw-r--r-- | test/csit/plans/aai/search-data-service/appconfig/analysis-config.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/csit/plans/aai/search-data-service/appconfig/analysis-config.json b/test/csit/plans/aai/search-data-service/appconfig/analysis-config.json new file mode 100644 index 000000000..f98ea3799 --- /dev/null +++ b/test/csit/plans/aai/search-data-service/appconfig/analysis-config.json @@ -0,0 +1,32 @@ +[ + { + "name": "whitespace_analyzer", + "description": "A standard whitespace analyzer.", + "behaviours": [ + "Tokenize the text using white space characters as delimeters.", + "Convert all characters to lower case.", + "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents." + ], + "tokenizer": "whitespace", + "filters": [ + "lowercase", + "asciifolding" + ] + }, + { + "name": "ngram_analyzer", + "description": "An analyzer which performs ngram filtering on the data stream.", + "behaviours": [ + "Tokenize the text using white space characters as delimeters.", + "Convert all characters to lower case.", + "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents.", + "Apply ngram filtering using the following values for minimum and maximum size in codepoints of a single n-gram: minimum = 1, maximum = 2." + ], + "tokenizer": "whitespace", + "filters": [ + "lowercase", + "asciifolding", + "ngram_filter" + ] + } +]
\ No newline at end of file |