Inverted Search Index
NOSQL의 데이터 모델링 기법 중 하나로 검색엔진과 같은 곳에서 사용하며, 일반적인 key, value 저장 방식에서 key와 value의 값을 반대로 하여 저장.
Key | Value |
frdmglo.tistory.com/manage | nosql,index |
frdmglo.tistory.com/search | nosql,search |
... | ... |
검색 시, inverted된 key, value 테이블을 다시 만든 뒤 검색하는 방식.
Key | Value |
nosql | frdmglo.tistory.com/manage frdmglo.tistory.com/search |
index | frdmglo.tistory.com/manage |
search | frdmglo.tistory.com/search |
... | ... |
반응형
'Programming' 카테고리의 다른 글
스케일 아웃(Scale-Out) 스케일 업(Scale-Up) 이란 (0) | 2022.08.04 |
---|---|
[MongoDb] 샤딩이란? (Sharding) (0) | 2022.08.04 |
[HTTP] 헤더 Referer, User-Agent 간단 정리 (0) | 2022.07.31 |
[HTTP] 헤더(header) 정보 간단 정리 (0) | 2022.07.31 |
[HTTP] 상태 코드 정리 (200, 300, 400, 500) (0) | 2022.07.31 |