I
I
Ilya Korablev2015-08-14 22:25:04
Task Schedulers
Ilya Korablev, 2015-08-14 22:25:04

Hosting with second cron?

What site hosts do you know that can set cron jobs every few seconds?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
D
Dmitry, 2015-08-14
@thewind

cron itself does not support running every few seconds. Only programmatically modify, already inside the script

A
AlikDex, 2015-08-14
@AlikDex

organize a queue of tasks and execute them with a regular cron, but with the script running time ~= the time between two cron runs.

S
Sergey, 2015-08-15
@Weidmann

Put in rc.local
while true; do echo "run every second" > /dev/null 2>&1 && sleep 1s; done

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question