Hi guys,

Assuming A.search(:order => :number).map(&:number) returns [1, 2, 3]
and B.search(:order => :number).map(&:number) returns [4, 5, 6], I
just noticed that ThinkingSphinx.search(:classes => [A, B], :order
=> :number).map(&:number) returns [1, 4, 2, 5, 3, 6].

I wanted the result to be [1, 2, 3, 4, 5, 6] (that means, an
aggregated result and not interpolation of singular results).

Follows call on real modules on the following gist in case you want to
take a look: https://gist.github.com/4a3ff29d79cf12f13ceb

Any clues, suggestions or discussions are deeply appreciated.

Thanks,
Marcos

-- 
You received this message because you are subscribed to the Google Groups 
"Thinking Sphinx" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/thinking-sphinx?hl=en.

Reply via email to