I am using Mikel's mail https://github.com/mikel/mail ruby gem to read from an IMAP server.
It all works great however I was wondering if you guys know a way to speed up SEARCH command requests.
A simple query such as:
Mail.find(:what => :last, :count => 2, :order => :desc, :keys => ['FROM', 'Jim Smith'])
Seems to take a while to request. Can I do this in a quicker way or improve my query in any way? Average load time for this query is about 10-30 seconds.
Any help, if any, would be appreciated.
Cheers.