tigerb/naruto

An object-oriented multi process manager for PHP

Installs: 115

Dependents: 0

Suggesters: 0

Security: 0

Stars: 135

Watchers: 12

Forks: 33

Open Issues: 2

Type:project

v0.5.0 2019-03-23 13:54 UTC

This package is auto-updated.

Last update: 2024-03-26 18:16:22 UTC


README

                       _        
                      | |       
_ __   __ _ _ __ _   _| |_ ___  
| '_ \ / _` | '__| | | | __/ _ \ 
| | | | (_| | |  | |_| | || (_) |
|_| |_|\__,_|_|   \__,_|\__\___/ .TIGERB.cn
			
An object-oriented multi process manager for PHP

Version: 0.5.0

OS

687474703a2f2f63646e2e7469676572622e636e2f7765636861742d626c6f672d7172636f64652e6a70673f696d6167654d6f6772322f7468756d626e61696c2f32363078323630212f666f726d61742f776562702f626c75722f3178302f7175616c6974792f39307c696d616765736c696d

demo

How to use?

Install

composer create-project tigerb/naruto naruto --prefer-dist && cd naruto

Business code

new Manager([], function (Process $worker) {
			// mock business logic
			(new Test())->businessLogic();
		}
	);

Run

echo export NARUTO_PATH=$(pwd) >> ~/.profile && echo 'export PATH="$PATH:$NARUTO_PATH/bin"' >> ~/.profile && source ~/.profile

composer install

naruto start/reload/quit/stop

Manager process

  • start <worker-num> <passwd>: start the naruto
  • reload: gracefully quit&start the worker process
  • quit: gracefully exit
  • stop: forcefully exit

Specification

TODO

  • Implement a shell script to control the process
  • Implement a daemon for worker by the master
  • Optimize log
  • Use a lightweight Orm Metoo
  • Implement max execute times for the worker process
  • Add config file
  • Remove a lightweight Orm Metoo for keep lightweight @2019/03/23
  • Implement email send when the worker in a exception&error
  • Add config reload strategy