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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Optimizing Elasticsearch Searches

90 点作者 brasetvik将近 11 年前

3 条评论

dchuk将近 11 年前
Anyone who is into Elasticsearch should spend some time reading all of the articles on Found's blog. Some really great stuff that covers ES better than most of the actual ES official docs.
unclebucknasty将近 11 年前
Lucene-based search (i.e. Elasticsearch, CloudSearch, etc.) strikes me as overly complex from a dev&#x27;s perspective. The indexing and search processes don&#x27;t seem to have enough sensible defaults and that&#x27;s to speak nothing of cluster configuration and management, memory issues, etc.<p>In general, there&#x27;s too much of a requirement to understand Lucene&#x27;s implementation details in order to use it effectively, and I&#x27;m just not sure why the process of building a search feature needs to be so difficult.
评论 #8206914 未加载
collyw将近 11 年前
This sounds like the same principles as normal (relational) database query optimization. Filter as much as you can early to avoid unneeded calculations later.