I have a normal Rails 2.3.4 application. Been using past TS with no
problem. I have upgraded to 1.3.6 and see my user's model delta not
working. I have to keep on rake ts:in in order to reveal the record
whenever I add a new user.
This same issue getting even strange when I upgraded to 1.3.7. The
whole user will not get indexed except for the very first user (it
keep on displaying only 1 user even though Rails console using TS show
size is 3). This is my simple index definition:
define_index do
indexes display_name, :sortable => true
indexes email, :sortable => true
indexes :type, :sortable => true
indexes first_name, :sortable => true
indexes last_name, :sortable => true
indexes gender, :sortable => true
indexes race, :sortable => true
indexes religion, :sortable => true
indexes marital_status, :sortable => true
indexes availability
indexes working_location
indexes company(:name), :as => :company_name
has dob
has expected_salary_min
has expected_salary_max
has current_salary
has travel
has relocate
has shift
has facebook_uid
has company_id
has nationality_id
has birth_place_id
where "users.status != 'removed'"
set_property :delta => true
end
--
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.