ES - 기초 명령 총화
7591 단어 ElasticSearch
POST http://localhost:9200/movies
생 성 성공 알림:
{
"acknowledged": true
}
2. 색인 상태 보기
//
http://ds0:9200/_cat/indices?v
3. 색인 정보 추가 (색인 정보 업데이트 =) 같은 색인, 같은 유형, 같은 ID 추가)
PUT http://ds0:9200/movies/movie/1
{
"title": "The Godfather",
"director": "Francis Ford Coppola",
"year": 1972
}
생 성 성공 알림:
{
"_index": "movies",
"_type": "movie",
"_id": "1",
// (_version) 。
"_version": 1,
"result": "created",
"_shards": {
"total": 2,
"successful": 1,
"failed": 0
},
"created": true
}
3. 문서 나 색인 가 져 오기
GET http://ip:port/ / /ID
성공 알림 가 져 오기:
{
//
"_index": "movies",
//
"_type": "movie",
//ID
"_id": "1",
//
"_version": 4,
"found": true,
//
"_source": {
"title": "The GodFather",
"director": "Francis Ford Coppola",
"year": 1972,
"genres": [
"Crime",
"Drama"
]
}
}
문서 내용 업데이트
http://ds0:9200/secisland/secilog/1/_update/
{
"doc":{
"computer":"secisland",
"message":"secisland is an security computer.It provides log analysis products"
}
}
업데이트 성공 결과:
{
"_index": "secisland",
"_type": "secilog",
"_id": "1",
"_version": 2,
"_shards": {
"total": 2,
"successful": 2,
"failed": 0
}
}
4. 문서 나 색인 삭제
DELETE http://ip:port/ / /ID
삭제 성공 후:
{
//
"found": true,
"_index": "movies",
"_type": "movie",
"_id": "1",
"_version": 5,
"_shards": {
"total": 2,
"successful": 2,
"failed": 0
}
}
5. _검색
/<type>/_search
// index type
6. URL 뒤에 추가?pretty 의 의미
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
spring-data-elasticsearch 페이지 조회부록: 1. 이름에서 알 수 있듯이QueryBuilder는 검색 조건, 필터 조건을 구축하는 데 사용되고 SortBuilder는 정렬을 구축하는 데 사용된다. 예를 들어 우리는 어느 위치에서 100미터 범위 내의 모...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.