[Elasticsearch] 2-1. 검색과 쿼리 - Query DSL (Full text query)
·
Side Project
[Prerequsite] # my_index 인덱스에 벌크로 데이터 입력 1. Kibana 접속: http://localhost:5601/ 2. 좌측 Navigation Bar > Management > Dev Tools POST my_index/_bulk {"index":{"_id":1}} {"message":"The quick brown fox"} {"index":{"_id":2}} {"message":"The quick brown fox jumps over the lazy dog"} {"index":{"_id":3}} {"message":"The quick brown fox jumps over the quick dog"} {"index":{"_id":4}} {"message":"Brown fox b..