고양이발일기
Elasticsearch 기초 및 데이터 CRUD 본문
반응형
Elasticsearch는 REST API를 사용한다..!
우리가 알고있는 PUT, GET, DELETE 같은 명령어를 사용함
RelationDB와의 비교
기본 개념
RelationDB | Elasticsearch |
Database | Index |
Table | Type |
Row | Document |
Column | Field |
Schema | Mapping |
명령어
RelationDB | Elasticsearch |
Select | GET |
Update | PUT |
Insert | POST |
Delete | DELETE |
GET
RelationDB
select * from _doc where id = 1
Elasticsearch
curl -XGET localhost:8000/movies/_doc/1
POST
RelationDB
insert into _doc values (1)
Elasticsearch
curl -XPOST localhost:8000/movies/_doc/1 -d '{1}'
PUT
RelationDB
update _doc set xxx where id = 1
Elasticsearch
curl -XPUT localhost:8000/movies/_doc/1 -d '{xxx}'
DELETE
RelationDB
delete from _doc where id = 1
Elasticsearch
curl -XDELETE localhost:8000/movies/_doc/1
반응형
'개발 일기' 카테고리의 다른 글
ES를 사용해서 검색기능 추가하기 (1) (0) | 2021.08.10 |
---|---|
Amazon ES에 테스트 데이터 업로드해보기 (1) | 2021.08.06 |
AWS Elasticsearch Service 시작하기 (0) | 2021.08.05 |
TypeScript 기본 문법 정리 (0) | 2021.08.04 |
Typescript 특징 정리 (0) | 2021.08.04 |
Comments