[LRUG] newsletter in rails
Steve Ganly
steve at concept-shop.com
Fri Jul 25 07:38:05 PDT 2008
Keep it simple, use the right tool for the job.
sendmail implements it's own queuing system in terms of sending out
messages as quickly as it can handle.
You submit your message(s) (like a mail agent) to sendmail, it queues
the mail by writing it to disk, the sendmail daemon then processes the
queue in the background. It's simple and rather well tested.
Queueing an email is well within usable limits of processing a request
cycle.
Steve.
On Fri, Jul 25, 2008 at 02:11:38PM +0100, Matthew Rudy Jacobs wrote:
> Perhaps.
>
> http://www.rubyinside.com/starling-and-rudeq-persistent-ruby-queues-958.html
> http://github.com/matthewrudy/rudeq/tree/master
>
> Have a look.
>
> It's pretty simple.
>
> ruby script/plugin install git://github.com/matthewrudy/rudeq.git
> rake queue:setup
> rake db:migrate
> ruby script/console
> RudeQueue.set(:queue_name, {:something => "you", "want" => 2, :store =>
> nil})
> RudeQueue.get(:queue_name)
>
> boom!
>
> 2008/7/25 Levent Ali <lebreeze at gmail.com>:
>
> > Matthew Rudy Jacobs, do you have any insight on simple elegant queuing
> > solutions that may help them out with this?
> >
More information about the Chat
mailing list