开发者

Is it worth using a daemon?

开发者 https://www.devze.com 2022-12-22 00:24 出处:网络
Hey guys, I have a program that uses ajax to send a post to multiple social networks via their APIs based on user form input. I was wondering if this process (which doesn\'t ta开发者_开发百科ke more t

Hey guys, I have a program that uses ajax to send a post to multiple social networks via their APIs based on user form input. I was wondering if this process (which doesn't ta开发者_开发百科ke more than 2-3 seconds when I test it myself) is worth daemonizing with something like BackgroundRB? In other words, were this program to become used by 100+ people, would the simple call to an action via AJAX slow the entire application down?


Yeah I'd recommend using DelayedJob to accomplish this task. You want to avoid unnecessary HTTP requests to your app. With DelayedJob, it connects to your database and makes third party connections without initiating any HTTP requests to your app.

I wouldn't recommend BackgroundRB.


Sort answer: you have to go into background, use delayed_job

Longer answer:

The problem is that although it takes only 2-3 seconds, it completely locks the application server while it does it. so if you have lets say 5 mongrels, or passenger app servers running, it means that if 5 people decide to do this action within 2-3 seconds interval no other requests will be able to be processed.

So while its ok to do it during the development it's a must to move it to background in production.

I wouldn't recommend BackgroundRB. For what you need it seems you need delayed_job


You have a lot of solution to made that

  • bj
  • delayed_job
  • resque
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号