Last active
August 29, 2015 14:18
-
-
Save up1/39fcbf82adba91b6d289 to your computer and use it in GitHub Desktop.
Elasticsearch DSL
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
การ import ข้อมูลเข้า Elasticsearch | |
ใช้เครื่องมือตัวนี้ | |
https://github.com/taskrabbit/elasticsearch-dump | |
เมื่อติดตั้งเสร็จใช้คำสั่งดังนี้ | |
$elasticdump \ | |
--bulk=true \ | |
--input=homepro.json \ | |
--output=http://localhost:9200 |
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
GET homepro/_search | |
{ | |
"from": 0, | |
"size": 10, | |
"query": { | |
"term": { | |
"_all": { | |
"value": "ตู้เย็น" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment