Displaying 1 result from an estimated 1 matches for "c715e64050831145815d9262c".
2006 Sep 23
0
TermQuery problem
...ch::Hit doc=450, score=6.51688194274902>], max_score=6.51688194274902>
> @i.search(Ferret::Search::TermQuery.new(:message_id, x))
=> #<struct Ferret::Search::TopDocs total_hits=0, hits=[], max_score=0.0>
But sometimes it works fine:
> x=@i[123][:message_id]
=> "c715e64050831145815d9262c at mail.gmail.com"
> @i.search("message_id:#{x}")
=> #<struct Ferret::Search::TopDocs total_hits=1, hits=[#<struct Ferret::Search::Hit doc=123, score=7.21260595321655>], max_score=7.21260595321655>
> @i.search(Ferret::Search::TermQuery.new(:message_id, x))...