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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How can I implement full-text search enginge

2 点作者 smoqadam超过 6 年前
I&#x27;m curious about how full-text search engines work but couldn&#x27;t find any resources on how to implement it. I would be appreciated if you let me know if you know any books or videos in this field. The programming language doesn&#x27;t really matter but preferably in Go or Python.<p>Thanks

3 条评论

brudgers超过 6 年前
This video provides a basic overview: <a href="https:&#x2F;&#x2F;archive.org&#x2F;details&#x2F;ucberkeley_webcast_WLpvUGjvmXc" rel="nofollow">https:&#x2F;&#x2F;archive.org&#x2F;details&#x2F;ucberkeley_webcast_WLpvUGjvmXc</a> and there&#x27;s more in the next video <a href="https:&#x2F;&#x2F;archive.org&#x2F;details&#x2F;ucberkeley_webcast_QNce8cVeoeA" rel="nofollow">https:&#x2F;&#x2F;archive.org&#x2F;details&#x2F;ucberkeley_webcast_QNce8cVeoeA</a> The highlight is that &quot;information retrieval&quot; is the CS term for full text search. So the better wikipedia page is, <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Information_retrieval" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Information_retrieval</a>.<p>Great for a learning exercise. For a production environment, it&#x27;s unlikely the organization is such a snow flake. A mature product is probably a better engineering choice than writing one from scratch when you&#x27;re writing your first one.
eesmith超过 6 年前
A DDG search for &quot;Text search engine python tutorial&quot; find articles like <a href="http:&#x2F;&#x2F;aakashjapi.com&#x2F;fuckin-search-engines-how-do-they-work&#x2F;" rel="nofollow">http:&#x2F;&#x2F;aakashjapi.com&#x2F;fuckin-search-engines-how-do-they-work...</a> .<p>There&#x27;s a textbook at <a href="https:&#x2F;&#x2F;nlp.stanford.edu&#x2F;IR-book&#x2F;information-retrieval-book.html" rel="nofollow">https:&#x2F;&#x2F;nlp.stanford.edu&#x2F;IR-book&#x2F;information-retrieval-book....</a> .<p>These should be enough hints so you can find something closer to what you are looking for.
billconan超过 6 年前
<a href="http:&#x2F;&#x2F;www.dcs.bbk.ac.uk&#x2F;~dell&#x2F;teaching&#x2F;cc&#x2F;book&#x2F;ditp&#x2F;ditp_ch4.pdf" rel="nofollow">http:&#x2F;&#x2F;www.dcs.bbk.ac.uk&#x2F;~dell&#x2F;teaching&#x2F;cc&#x2F;book&#x2F;ditp&#x2F;ditp_ch...</a>