Giter Club home page Giter Club logo

Comments (2)

qubusp avatar qubusp commented on August 20, 2024 1

OK, let me just summerize on the issue as I have been following Stavros on the FB group.

  1. When using your suggestion of documentation in ES 5.x, configuring indexes on node level doesn't work. It has to be done via POST.
PUT plastic
{
"settings":{
"analysis":{
"analyzer":{
"stem_analyzer":{
"type":"custom",
"tokenizer":"standard",
"filter": ["lower_greek", "stem_greek","greeklish_analysis"]
}
},
"filter": {
"lower_greek": {
"type":"lowercase",
"language":"greek"
},
"stem_greek": {
"type":"skroutz_stem_greek"
},
"greeklish_analysis":{
"type": "skroutz_greeklish",
"max_expansions": 15
}
}
}
},
"mappings": {
"as_export_data": {
"properties": {
"pr_name": {
"type": "text",
"analyzer": "stem_analyzer",
"fielddata": true
},
"pr_model": {
"type": "text",
"analyzer": "stem_analyzer",
"fielddata": true
},
"mnf_name": {
"type": "text",
"analyzer": "stem_analyzer",
"fielddata": true
},
"cat_names": {
"type": "text",
"analyzer": "stem_analyzer",
"fielddata": true
}
}
}
}
}
  1. Please put the warning for the smallcase on top of the README.md in bold, as it confuses a lot of people.
  2. I guess the plugin is going to work for 6.x but please update, as more and more production systems are moving to that version.

Thank you.

from elasticsearch-analysis-greeklish.

lovemeblender avatar lovemeblender commented on August 20, 2024

Thank you for your suggestions and for getting in touch!

Please note that we do accept pull requests - feel free to create one :)

from elasticsearch-analysis-greeklish.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.