es. ik 분사 기 에 가입 하여 색인 과 조 회 를 만 듭 니 다.

http://localhost:9200/blog put 방식
{
	"mappings":{
		"hello":{
			"properties":{
				"id":{
					"type":"long",
					"store":true
					
					
				},
				"title":{
					"type":"text",
					"store":true,
					"analyzer":"ik_smart"
				},
				"content":{
				"type":"text",
				"store":true,
				"analyzer":"ik_smart"
				}
			}
		}
	}
}

조회 하 다.
http://localhost:9200/blog/hello/_search   post 방식
{
	"query":{
		"query_string":{
			"default_field":"content",
			"query":"      "
		}
	}
}

좋은 웹페이지 즐겨찾기