본문 바로가기

Programming

[NOSQL] Inverted Search Index 검색엔진 데이터 모델링

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
... ...

 

반응형