Hi,
I have defined indexes as below..
define_index do
#fields
indexes [user.first_name,user.last_name],:as=>:survey_created_by
indexes questions(:question), :as => :question
indexes geographical_areas(:name), :as => :country#,:with=>
{:area_type => 'Country'}
has marketspaces(:id), :as => :marketspace_id
indexes status,:as => :survey_status
has start_date, :type => :datetime
set_property :delta => true
end
Now when I exclude marketspace_id from the search query I do not get
the complete results. I should be getting 26 results but getting only
20 results.
When the marketspace_id is included in the search query the search
results are correct.
I even tried using with_all filter for marketspace id in search query
as
:with_all=>{:marketspace_id =>MarketSpace.collect(&:id) }
But even this is not giving the expected result..
Could you please help me resolve this issue.
Thanks and regards,
Surbhi.
--
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.