-
-
Save atinux/7583823 to your computer and use it in GitHub Desktop.
Standard tokenization, but without the lowercasing and stopword removal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
text: Je suis une petite hirondelle qui adore sautiller dans l'herbe chanté bébé à l'@email ! | |
analyzer: | |
standard: | |
type: standard | |
simple: | |
type: simple | |
stop: | |
type: stop | |
snowball: | |
type: snowball | |
french: | |
type: french | |
special: | |
type: custom | |
tokenizer: standard | |
filter: | |
- lowercase | |
- asciifolding | |
- phonetic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
username: Atinux | |
# GO to Analysis tab :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GO to Analysis tab :) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export ELASTICSEARCH_ENDPOINT="http://localhost:9200" | |
# Create indexes | |
curl -XPUT "$ELASTICSEARCH_ENDPOINT/play" -d '{ | |
"settings": { | |
"analysis": { | |
"text": "Je suis une petite hirondelle qui adore sautiller dans l'herbe chanté bébé à l'@email !", | |
"analyzer": { | |
"standard": { | |
"type": "standard" | |
}, | |
"simple": { | |
"type": "simple" | |
}, | |
"stop": { | |
"type": "stop" | |
}, | |
"snowball": { | |
"type": "snowball" | |
}, | |
"french": { | |
"type": "french" | |
}, | |
"special": { | |
"type": "custom", | |
"tokenizer": "standard", | |
"filter": [ | |
"lowercase", | |
"asciifolding", | |
"phonetic" | |
] | |
} | |
} | |
} | |
}, | |
"mappings": {} | |
}' | |
# Index documents | |
curl -XPOST "$ELASTICSEARCH_ENDPOINT/_bulk?refresh=true" -d ' | |
{"index":{"_index":"play","_type":"type"}} | |
{"username":"Atinux"} | |
' | |
# Do searches | |
curl -XPOST "$ELASTICSEARCH_ENDPOINT/_search?pretty" -d ' | |
{ | |
"query": { | |
"match_all": {} | |
} | |
} | |
' | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Auto generated by Found's Play-tool at 2013-11-21T16:39:56+01:00 | |
version: 0 | |
title: Examples of analyzer/tokenizer | |
description: Multiples analyzer and one custom with tokenizer and filter to show the differences. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GO to Analysis tab :) | |
query: | |
match_all: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment