I am having some strange behavior with Mongoid.
Person.find_by("name" => params["name"])
times out with code=H12 desc="Request timeout", but this works:
Product.where("name" => params["name"])
I'm using unicorn, sinatra, mongohq, mongoid3+, ruby 1.9.3 & heroku cedar.
Any thoughts on what might be going on?
Persontable is just too large/is taking too long to search with Mongoid? – Dominic Feb 12 at 5:37