You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can run the same query with different limits and get completely different results.
For example, I have a User.create(first_name: "Josh"). When I call User.find_with_index("Josh", { :limit => 10 }), it returns an empty array, but User.find_with_index("Josh", { :limit => 40 }) will return the desired result.
Strangely, anything >= 31 that I've tried so far works as desired, but anything less does not.
The text was updated successfully, but these errors were encountered:
I can run the same query with different limits and get completely different results.
For example, I have a
User.create(first_name: "Josh")
. When I callUser.find_with_index("Josh", { :limit => 10 })
, it returns an empty array, butUser.find_with_index("Josh", { :limit => 40 })
will return the desired result.Strangely, anything >= 31 that I've tried so far works as desired, but anything less does not.
The text was updated successfully, but these errors were encountered: