rails periodic task

前端 未结 6 1404
忘了有多久
忘了有多久 2021-02-13 15:19

I have a ruby on rails app in which I\'m trying to find a way to run some code every few seconds.

I\'ve found lots of info and ideas using cron, or cron-like implementat

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-13 15:43

    Use thin or other server which uses eventmachine, then just use timers that are part of eventmachine. Example: in config/application.rb

    EM.add_periodic_timer(2) do
      do_this_every_2_sec
    end  
    

提交回复
热议问题