-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
26 lines (22 loc) · 934 Bytes
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
== Description ==
Worker is a simple and unobstrusive RPC (remote procedure call) and IPC
(inter process communication) library which tries to stay out of your way as
much as possible. It's entirely written in pure PHP
Author: Christian Lück <[email protected]>
Homepage: https://github.com/clue/Worker
License: MIT-style license
== Dependencies ==
Required:
* PHP 5.2+
* Stream_Master [https://github.com/clue/Stream_Master]
Handle multiple worker streams
* EventEmitter [https://github.com/clue/EventEmitter]
Provides event-driven paradigm
Recommended:
* Process [https://github.com/clue/Process]
Required for fork to multiple processes (Worker_Slave_Process)
Optional:
* Output_Mirror [https://github.com/clue/Output_Mirror]
When installed, Worker_Job takes advantage of it in that function output is
immediately mirrored. Otherwise, whole function output gets buffered using
PHP's output buffering functions.