rails periodic task

前端 未结 6 1409
忘了有多久
忘了有多久 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:45

    I'd suggest the whenever gem https://github.com/javan/whenever

    It allows you to specify a schedule like:

    every 15.minutes do
      MyClass.do_stuff
    end
    

    There's no scheduling cron jobs or monkeying with external services.

提交回复
热议问题