Hi,
I have a pretty odd situation.
I have a model called User that has the standard updated_at and
created_at columns. If I do the following sequence i get incorrect
results from thinking sphinx. How would i go about debugging this?
t = Time.now.utc
u = User.last
u.phone_number = "92340923"
u.save
User.count :conditions => {:updated_at => t..Time.now.utc}
1
User.search_count :with => {:updated_at => t..Time.now.utc}
0
User.search :with => {:updated_at => t..Time.now.utc}
[]
Any ideas?
--
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.