Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TIGERB/naruto
An object-oriented multi process manager for PHP :robot:
https://github.com/TIGERB/naruto
php php-cli php-framework php-library php-multi-process php-task task-manager
Last synced: 10 days ago
JSON representation
An object-oriented multi process manager for PHP :robot:
- Host: GitHub
- URL: https://github.com/TIGERB/naruto
- Owner: TIGERB
- License: mit
- Created: 2017-11-17T00:35:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-20T17:43:53.000Z (over 3 years ago)
- Last Synced: 2024-04-14T07:42:20.394Z (7 months ago)
- Topics: php, php-cli, php-framework, php-library, php-multi-process, php-task, task-manager
- Language: PHP
- Homepage: http://naruto.tigerb.cn
- Size: 55.7 KB
- Stars: 134
- Watchers: 12
- Forks: 33
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- favorite-link - PHP 的一个面向对象的多进程管理器。
README
```
_
| |
_ __ __ _ _ __ _ _| |_ ___
| '_ \ / _` | '__| | | | __/ _ \
| | | | (_| | | | |_| | || (_) |
|_| |_|\__,_|_| \__,_|\__\___/ .TIGERB.cn
An object-oriented multi process manager for PHPVersion: 0.5.0
```
# How to use?
### Install
```
composer create-project tigerb/naruto naruto --prefer-dist && cd naruto
```### Business code
```php
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 \ \: start the naruto
- reload: gracefully quit&start the worker process
- quit: gracefully exit
- stop: forcefully exit# Specification
- [中文](./docs/specification-zh.md)
- English# TODO
- [x] Implement a shell script to control the process
- [x] Implement a daemon for worker by the master
- [x] Optimize log
- [x] Use a lightweight Orm [Metoo](https://github.com/catfan/Medoo)
- [x] Implement max execute times for the worker process
- [x] Add config file
- [x] Remove a lightweight Orm [Metoo](https://github.com/catfan/Medoo) for keep lightweight @2019/03/23
- [ ] Implement email send when the worker in a exception&error
- [ ] Add config reload strategy