Giter Site home page Giter Site logo

Comments (3)

duydo avatar duydo commented on June 23, 2024

I've just tested, it works as expected. You can execute following commands to verify:
Check the plugin if it works

curl -XGET "http://localhost:9200/_analyze?analyzer=vi_analyzer&text="Công nghệ thông tin Việt Nam"

Create index test

curl -XPUT "http://localhost:9200/test/" -d'
{
  "mappings": {
    "data": {
      "properties": {
        "content": {
          "type": "string",
          "analyzer": "vi_analyzer"
        }
      }
    }
  }
}'

Index a document

curl -XPOST "http://localhost:9200/test/data" -d'
{
"content": "Công nghệ thông tin Việt Nam",
"id": 100
}'

Search

curl -XGET "http://localhost:9200/test/data/_search" -d'
{
  "query": {
    "match": {
      "content": "Công nghệ thông tin"
    }
  }
}'

Result

{
   "took": 2,
   "timed_out": false,
   "_shards": {
      "total": 1,
      "successful": 1,
      "failed": 0
   },
   "hits": {
      "total": 1,
      "max_score": 0.19178301,
      "hits": [
         {
            "_index": "test",
            "_type": "data",
            "_id": "RESXVjERQsikqHfzjvOg5w",
            "_score": 0.19178301,
            "_source": {
               "content": "Công nghệ thông tin Việt Nam",
               "id": 100
            }
         }
      ]
   }
}

from elasticsearch-analysis-vietnamese.

nnhatnam avatar nnhatnam commented on June 23, 2024

I've tried but it still had the same problem. I tried to reinstall elasticsearch but nothing change. I think I missing something. I'll try on another computer :(

from elasticsearch-analysis-vietnamese.

duydo avatar duydo commented on June 23, 2024

Have you resolved the issue? If yes, I close this issue.

from elasticsearch-analysis-vietnamese.

Related Issues (20)

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.