I'm indexing books and perform text searches on different fields of the book :
- Title
- Author
- Book summary
i tried to create an index by concatenating the book name, the author name and the book summary but some of my searches don't return the expected results and i dont understand why.
What is the right way to index the books so that i search on all these fields at the same time ?
--
Here is the code sample :
book_text_index = "#{book.name} #{book.author} #{book.summary}"
idx.document("book_502").add({ :text => book_text_index,
:book_id => "#{book.id}",
:name => "#{book.name}",
:author => "#{book.author}",
:summary => "#{book.summary}"
})
And here is an example of the results i get for the book "L'art de la guerre" by "Sun Tzu".
If i search the author name ("tzu") it returns the book:
idx.search("tzu", :function => 1, :fetch => 'text' )['results']
=> [{"text"=>"L'art de la guerre Sun Tzu Youboox libres de droits Traduit pour la première fois...", "docid"=>"book_502", "query_relevance_score"=>-2967.0}]
But if i search a part of the book title ("guerre") i dont get the book in the results.
idx.search("guerre", :function => 1, :fetch => 'book_id' )['results'].map { |result| result["docid"]}
=> ["book_1962", "book_1963", "book_1951", "book_1832", "book_1812", "book_1787", "book_1775", "book_1778", "book_1730", "book_1740"]
You can see that the book_502 is not in the results.