TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Optimizing Elasticsearch Searches

90 pointsby brasetvikover 10 years ago

3 comments

dchukover 10 years ago
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.
unclebucknastyover 10 years ago
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 未加载
collywover 10 years ago
This sounds like the same principles as normal (relational) database query optimization. Filter as much as you can early to avoid unneeded calculations later.