Live data from Hacker News

Ask HN: Books about full text search?

news.ycombinator.com

11–20 of 33 posts

Re: Ask HN: Books about full text search?

#11
post #3

https://www.manning.com/books/relevant-search Also "taming text"

Taming Text is about building a question-answering system; it came out about the time Watson came online; it's not a plan, rather a cookbook of experiments using Apache products like Solr and OpenNLP, but is a great tutorial on how question answering works.

Re: Ask HN: Books about full text search?

#12
Not a book but Hellerstein’s CS186 from 2015 starting with Lecture 17 gave me a basic understanding (I think).

Playlist https://youtube.com/playlist?list=PLhMnuBfGeCDPtyC9kUf_hG_Qw...

Also from that lecture series, the low level is always IO. One disk read tends to dwarf n^2 in-memory algorithms.

And IO is all about tuning caches and hardware for the specific structural relationships in the data, the way in which it is accessed, and the hardware everything runs on.

Good luck.

Re: Ask HN: Books about full text search?

#17
“Relevant search” by Doug Turnbull and John Berryman, published by Manning, is THE best book to get started with tuning search engines.

I’be been a search engineer for >10 years and this is always the first book I recommend.

https://www.manning.com/books/relevant-search

Re: Ask HN: Books about full text search?

#18

“Relevant search” by Doug Turnbull and John Berryman, published by Manning, is THE best book to get started with tuning search engines. I’be been a search engineer for >10 years and this is always the first book I recommend. https://www.manning.com/books/relevant-search

Awe thanks Max <3

Re: Ask HN: Books about full text search?

#20
post #4

At a general audience level, "Index" is on my list to read. It covers the invention of the index up to digital search engines. https://www.nytimes.com/2022/02/09/books/review-index-histor... "Introduction to Information Retrieval" is a textbook which is available online https://nlp.stanford.edu/IR-book/ Here's a review: http://glinden.blogspot.com/2009/02/book-review-introduction... Another textbook which IMHO is a b…

Going to second the rec on "Index", it's a very understandable, well researched book that the general audience or even a skilled practitioner would enjoy.
Post reply on HN