docs/settings.json
changeset 17 4d9c23cdfa82
parent 16 e5add18ddc33
child 18 53998b9969ad
--- a/docs/settings.json	Wed Jul 12 12:03:17 2017 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,74 +0,0 @@
-{
-	"settings": {
-		"analysis": {
-			"tokenizer": {
-				"nGram": {
-					"type": "nGram",
-					"min_gram": 3,
-					"max_gram": 20
-				}
-			},
-			"filter": {
-				"snowball_fr": {
-					"type": "snowball",
-					"language": "French"
-				},
-				"elision_fr": {
-					"type": "elision",
-					"articles": [
-						"l",
-						"m",
-						"t",
-						"qu",
-						"n",
-						"s",
-						"j",
-						"d",
-						"c",
-						"jusqu",
-						"quoiqu",
-						"lorsqu",
-						"puisqu"
-					]
-				},
-				"stop_fr": {
-					"type": "stop",
-					"stopwords": "_french_",
-					"ignore_case": true
-				},
-				"stemmer_fr": {
-					"type": "stemmer",
-					"language": "light_french"
-				}
-			},
-			"analyzer": {
-				"french": {
-					"type": "custom",
-					"tokenizer": "nGram",
-					"filter": [
-						"stop_fr",
-						"asciifolding",
-						"lowercase",
-						"snowball_fr",
-						"elision_fr",
-						"stemmer_fr",
-						"word_delimiter"
-					]
-				},
-				"french_search": {
-					"type": "custom",
-					"tokenizer": "standard",
-					"filter": [
-						"stop_fr",
-						"asciifolding",
-						"lowercase",
-						"snowball_fr",
-						"elision_fr",
-						"stemmer_fr",
-						"word_delimiter"
-					]
-				}
-			}
-		}
-	}
-}