I'm afraid Sphinx doesn't provide that level of detail - you'd have to scan through the results yourself to figure out how many times it matched in the Ruby side of things.
--
Pat
> --
> You received this message because you are subscribed to the Google Groups "Thinking Sphinx" group.
> To post to this group, send email to thinkin...@googlegroups.com.
> To unsubscribe from this group, send email to thinking-sphi...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/thinking-sphinx?hl=en.
>
Wouldn't ThinkingSphinx::Search#results[:words] do what you need?
ThinkingSphinx.search('blue').results[:words]
=> {"blue"=>{:docs=>2, :hits=>4}}
-T-