2017 © Pedro Peláez
 

library tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

image

g4/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  • Monday, April 23, 2018
  • by g4code
  • Repository
  • 13 Watchers
  • 9 Stars
  • 5,634 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 78 Versions
  • 9 % Grown

The README.md

Tasker

Tasker - Application asynchronous tasks manager, cron-like PHP implementation with ability to run task in seconds (unlike cron in minutes), (*1)

Requires

  • MySQL tables
CREATE TABLE tasks (
    task_id       BIGINT(20)   UNSIGNED          AUTO_INCREMENT,
    recu_id       INT(10)      UNSIGNED NOT NULL DEFAULT 0,
    identifier    VARCHAR(255)          NOT NULL DEFAULT '',
    task          VARCHAR(255)          NOT NULL DEFAULT '',
    data          TEXT,
    request_uuid  CHAR(36)              NOT NULL DEFAULT '',
    status        TINYINT(3)   UNSIGNED NOT NULL DEFAULT 0,
    priority      TINYINT(3)   UNSIGNED NOT NULL DEFAULT 0,
    ts_created    INT(10)      UNSIGNED NOT NULL DEFAULT 0,
    ts_started    INT(10)      UNSIGNED NOT NULL DEFAULT 0,
    exec_time     FLOAT(10,6)  UNSIGNED NOT NULL DEFAULT 0.000000,
    started_count TINYINT(3)   UNSIGNED NOT NULL DEFAULT 0,
    PRIMARY KEY (task_id),
    KEY (recu_id),
    KEY (priority),
    KEY (status),
    KEY pending (status, ts_created),
    KEY started_count (started_count)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE tasks_recurrings (
    recu_id   INT(10)      UNSIGNED          AUTO_INCREMENT,
    frequency VARCHAR(255)          NOT NULL DEFAULT '',
    task      VARCHAR(255)          NOT NULL DEFAULT '',
    data      TEXT,
    status    TINYINT(3)   UNSIGNED NOT NULL DEFAULT 0,
    priority  TINYINT(3)   UNSIGNED NOT NULL DEFAULT 0,
    PRIMARY KEY (recu_id),
    UNIQUE (task),
    KEY (status)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE tasks_error_log (
    tel_id       INT(10)      UNSIGNED          AUTO_INCREMENT,
    task_id      BIGINT(20)   UNSIGNED NOT NULL DEFAULT 0,
    identifier   VARCHAR(255)          NOT NULL DEFAULT '',
    task         VARCHAR(255)          NOT NULL DEFAULT '',
    data         TEXT,
    ts_started   INT(10)      UNSIGNED NOT NULL DEFAULT 0,
    date_started DATETIME                      DEFAULT NULL,
    exec_time    FLOAT(10,6)  UNSIGNED NOT NULL DEFAULT 0.00,
    log          TEXT,
    PRIMARY KEY (tel_id),
    KEY (task_id),
    KEY (identifier),
    KEY (task),
    KEY (ts_started),
    KEY (date_started),
    KEY (exec_time)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

```sql CREATE TABLE tasker_pool ( hostname varchar(255) NOT NULL DEFAULT '', status tinyint(3) unsigned NOT NULL DEFAULT '0', ts_available int(10) NOT NULL DEFAULT '0', PRIMARY KEY (hostname) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;, (*2)


* Sample data ```sql INSERT INTO tasks_recurrings (task, frequency, data, status) VALUES ('Dummy\\Task\\Foo', '0 3-59/15 2,6-12 */15 1 2-5', '{\"foo\":123}', '1'), ('Dummy\\Task\\Bar', '0 */5 * * * *', '{\"bar\":234}', '1'); # runs every 5 minutes

License

(The MIT License) see LICENSE file for details..., (*3)

The Versions

23/04 2018

dev-master

9999999-dev http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

28/03 2018

1.7.6

1.7.6.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

26/03 2018

1.7.5

1.7.5.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

26/03 2018

1.7.4

1.7.4.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

23/03 2018

1.7.3

1.7.3.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

23/03 2018

1.7.2

1.7.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

14/03 2018

1.7.1

1.7.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

14/03 2018

1.7.0

1.7.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

16/11 2017

dev-develop

dev-develop http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

16/11 2017

1.6.1

1.6.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

14/11 2017

1.6.0

1.6.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

18/09 2017

1.5.1

1.5.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

03/08 2017

1.5.0

1.5.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

15/05 2017

1.4.1

1.4.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

24/04 2017

1.4.0

1.4.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

19/04 2017

1.3.1

1.3.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

13/04 2017

1.3.0

1.3.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

11/04 2017

1.2.0

1.2.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

07/04 2017

1.1.0

1.1.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

28/03 2017

1.0.1

1.0.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

07/03 2017

dev-feature/hostname-pool

dev-feature/hostname-pool http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

06/03 2017

dev-feature/remove-datamapper

dev-feature/remove-datamapper http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

06/03 2017

1.0.0

1.0.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

12/01 2017

dev-origin

dev-origin http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

12/01 2017

0.16.1

0.16.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

28/12 2016

0.16.0

0.16.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

22/12 2016

0.15.3

0.15.3.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

13/12 2016

0.15.2

0.15.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

05/10 2016

0.15.1

0.15.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

28/09 2015

0.15.0

0.15.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

28/09 2015

0.14.0

0.14.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

28/09 2015

0.13.0

0.13.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

26/08 2015

0.12.0

0.12.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

24/08 2015

0.11.0

0.11.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

19/06 2015

0.10.8

0.10.8.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

07/04 2015

0.10.7

0.10.7.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

18/03 2015

0.10.6

0.10.6.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

13/01 2015

0.10.5

0.10.5.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

16/12 2014

0.10.4

0.10.4.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

12/12 2014

0.10.3

0.10.3.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

11/12 2014

0.10.2

0.10.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

11/12 2014

0.10.1

0.10.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

11/12 2014

0.10.0

0.10.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

14/11 2014

0.9.2

0.9.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

04/11 2014

0.9.1

0.9.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

17/10 2014

0.9.0

0.9.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

03/09 2014

0.8.1

0.8.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

31/07 2014

0.8.0

0.8.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

24/06 2014

0.7.2

0.7.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

16/06 2014

0.7.1

0.7.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

07/06 2014

0.7.0

0.7.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

29/05 2014

0.6.4

0.6.4.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

29/05 2014

0.6.3

0.6.3.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

27/05 2014

0.6.2

0.6.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

26/05 2014

0.6.1

0.6.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

26/05 2014

0.6.0

0.6.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/05 2014

0.5.11

0.5.11.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/05 2014

0.5.10

0.5.10.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/05 2014

0.5.9

0.5.9.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/05 2014

0.5.8

0.5.8.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/05 2014

0.5.7

0.5.7.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/05 2014

0.5.6

0.5.6.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

19/05 2014

0.5.5

0.5.5.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

14/05 2014

0.5.4

0.5.4.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

30/04 2014

0.5.3

0.5.3.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

29/04 2014

0.5.2

0.5.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

15/04 2014

0.5.1

0.5.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

15/04 2014

0.5.0

0.5.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

07/04 2014

0.4.0

0.4.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

21/03 2014

0.3.0

0.3.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

17/03 2014

0.2.1

0.2.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

13/03 2014

0.2.0

0.2.0.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

20/02 2014

0.1.6

0.1.6.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

27/01 2014

0.1.5

0.1.5.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

16/01 2014

0.1.4

0.1.4.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

13/01 2014

0.1.3

0.1.3.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

13/01 2014

0.1.2

0.1.2.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw

12/01 2014

0.1.1

0.1.1.0 http://g4fw.com/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation

  Sources   Download

MIT

The Requires

 

by Drasko Gomboc
by Dejan Samardzija
by Ivan Krickovic

task queue async cron g4code g4fw