This file contains hidden or 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
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
This file contains hidden or 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
| curl -X DELETE localhost:9200/custom_analyzer_test | |
| curl -X PUT localhost:9200/custom_analyzer_test -d ' | |
| { | |
| "settings" : { | |
| "index" : { | |
| "number_of_shards" : 1, | |
| "number_of_replicas" : 0, | |
| "analysis" : { | |
| "analyzer" : { | |
| "url_analyzer" : { |
This file contains hidden or 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
| int cursor = 0; | |
| SearchResponse searchResponse = new SearchRequestBuilder(client) | |
| .setIndices(alias) | |
| .setSearchType(SearchType.SCAN) | |
| .setQuery(matchAllQuery()) | |
| .setSize(10) | |
| .setFrom(cursor) | |
| .setScroll(TimeValue.timeValueMinutes(10)) | |
| .execute() |
This file contains hidden or 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
| ################### | |
| # CREATE THE INDEX: | |
| ################### | |
| curl -XPUT 'http://127.0.0.1:9200/test/?pretty=1' -d ' | |
| { | |
| "settings" : { | |
| "analysis" : { | |
| "filter" : { | |
| "edge_ngram" : { | |
| "side" : "front", |