728x90
종종 쓰일것 같은 검색기능이 있어서 간략히 정리해본다.
mongo에는 엄청난 Text검색기능이 있다
mongoDB 메뉴얼의 예제를 체크해본다.
db.articles.insert(
[
{ _id: 1, subject: "coffee", author: "xyz", views: 50 },
{ _id: 2, subject: "Coffee Shopping", author: "efg", views: 5 },
{ _id: 3, subject: "Baking a cake", author: "abc", views: 90 },
{ _id: 4, subject: "baking", author: "xyz", views: 100 },
{ _id: 5, subject: "Café Con Leche", author: "abc", views: 200 },
{ _id: 6, subject: "Сырники", author: "jkl", views: 80 },
{ _id: 7, subject: "coffee and cream", author: "efg", views: 10 },
{ _id: 8, subject: "Cafe con Leche", author: "xyz", views: 10 }
]
)
db.articles.find( { $text: { $search: "coffee" } } )
{ "_id" : 2, "subject" : "Coffee Shopping", "author" : "efg", "views" : 5 }
{ "_id" : 7, "subject" : "coffee and cream", "author" : "efg", "views" : 10 }
{ "_id" : 1, "subject" : "coffee", "author" : "xyz", "views" : 50 }
검색이 이렇게 편해도되는걸까?
728x90
반응형
'개발, 코딩 > RDB|SQL|NoSQL' 카테고리의 다른 글
[Mongo, 안정적 시스템 구축] step1 - 백업 (0) | 2020.04.28 |
---|---|
Mongo, $project에서 array타입 null체크하여 처리하기 (0) | 2020.04.21 |
Mongodb, array내 object의 value는 어떻게 바꿀까? (0) | 2020.02.07 |
react-native, webview 마스터 (0) | 2019.11.19 |
mongodb, 배열처리하기 (0) | 2019.11.19 |