Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to display the count hit/number of a search result in Grails?

share|improve this question
1  
How is your search performed? Are you using a plugin, hibernate search, searchable etc?? P.s Your accept rate is very questionable! – gotomanners May 28 '12 at 11:44

closed as not a real question by Igor Artamonov, BoltClock May 28 '12 at 22:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

you can use Searchable plugin for searching,

and you can get no of hits

assert searchResult instanceof Map

println "${searchResult.total} hits:"

for (i in 0..<searchResult.results.size()) 

{

  println "${searchResult.offset + i + 1}: " +

  "${searchResult.results[i].toString()} " +

  "(score ${searchResult.scores[i]})"

}

You can refer to this link also:

http://grails.org/Searchable+Plugin+-+Methods+-+moreLikeThis

share|improve this answer
if you liked, you can accept it as answer!!! – an5607ky May 31 '12 at 10:35

Not the answer you're looking for? Browse other questions tagged or ask your own question.