S
S
stanlee2015-08-25 12:33:49
PHP
stanlee, 2015-08-25 12:33:49

Is there a replacement for krone for one-time tasks?

The essence of the problem is that you need to specify point tasks from the aminka. which will work one time.
The cron option that checks something every minute is not very convenient.
What is the best way to implement such functionality?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
C
Cat Anton, 2015-08-25
@27cm

https://ru.wikipedia.org/wiki/At

E
entermix, 2015-08-25
@entermix

Message
Queues Queues in Gearman and PHP
Which queuing server should I use?

A
amstr1k, 2015-08-25
@amstr1k

writing an implementation of launching cron from a browser is not so difficult

$cmd = "../CronTask.php";
passthru($cmd);

K
Konstantin, 2015-08-25
@unity_ultra_hardcore

You can implement a delayed queue, but you still cannot do without a scheduler / daemon that will check for actual tasks and execute them.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question