Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AFAIK Trello 使用 MongoDB 保存数据。MongoDB 不支持全文搜索。
然而 Trello 的全文搜索既全面又非常快速。
那个怎么样?它如何处理被标记的单词/短语?
虽然 Trello 的数据库中有数百万个文档,但给定用户关心(甚至有权阅读)的实际信息集实际上非常小。
正因为如此,Trello 能够使用相对简单的搜索机制(例如使用正则表达式和$where子句)并且仍然非常快速地返回结果。
$where
披露:我为 Trello.com 编写了搜索代码