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.

Ask HN: Embedded or lightweight full-text/fuzzy-text search engine database?

2 pointsby micah63over 14 years ago
I am looking for a search engine that can search 50,000 documents on an Intranet. Very low activity. Just need it to be lightweight, but it would be awesome if it was embedded.<p>I need googlish full-text search features like fuzzy text search, "did you mean" and maybe autofill search suggestions based on popular queries.<p>Is there anything like that out there?

2 comments

taylorbuleyover 14 years ago
I can't find it now but I recently read a Stanford paper where they use Wikipedia relationships to do "query expansion," which seems to be along the lines of what you're looking for. I've heard neural nets called overkill but Wikipedia relationships + neural net should yield a pretty interesting product and would allow you to suggest options for queries you've never seen before.
评论 #2077022 未加载
Travisover 14 years ago
Have you looked into Solr/Lucene? They're run by the apache foundation -- Lucene is the actual engine, and Solr is kind of a wrapper around it. Pretty easy to setup, will parse numerous input document formats. solr.apache.org i believe.
评论 #2077028 未加载