Notice
Recent Posts
Recent Comments
Link
반응형
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

고양이발일기

Elasticsearch 기초 및 데이터 CRUD 본문

개발 일기

Elasticsearch 기초 및 데이터 CRUD

sowish 2021. 8. 5. 22:26
반응형

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

 

반응형
Comments