TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What's the best way to handle full-text search with MongoDB?

5 点作者 bradleyjoyce超过 14 年前

4 条评论

rlivsey超过 14 年前
We're using ElasticSearch [1] and finding it really nice to work with.<p>It's basically Lucene with a nice JSON/RESTful interface and distributed out of the box.<p>Unlike most other Lucene based systems that I've played with it allows you to get started without having to define your schema upfront, so you can just chuck data at it and worry about field types later.<p>It's under constant development and the community is really helpful.<p>[1] - <a href="http://www.elasticsearch.com/" rel="nofollow">http://www.elasticsearch.com/</a>
评论 #2070060 未加载
asheeshlaroia超过 14 年前
Use SOLR for indexing your full text. (By all means store your data in Mongo, but when it comes time to search, search SOLR instead.)
bobf超过 14 年前
Have you considered Riak+RiakSearch? I'm in a similar bind, and have been looking into that.
pierrefar超过 14 年前
I'm using sphinx. Works a treat.
评论 #2070071 未加载