Giter VIP home page Giter VIP logo

fiberrunner's Introduction

FiberRunner

FiberDriver is a PHP package designed for managing and executing concurrent tasks using PHP fibers. This package provides a robust and efficient way to handle asynchronous operations, allowing developers to create and control multiple fibers with context management. Key features include:

Fiber Creation and Management: Easily create and manage fibers with context. Context Handling: Store and manage context data and exceptions. Concurrency: Execute multiple fibers concurrently, enhancing performance for I/O-bound and CPU-bound tasks. Ideal for tasks like asynchronous HTTP requests, database queries, and parallel processing.

Features

  • Fiber Creation and Management: Easily create and manage fibers with context.
  • Context Handling: Store and manage context data and exceptions.
  • Concurrency: Execute multiple fibers concurrently, enhancing performance for I/O-bound and CPU-bound tasks.

#Installation You can install the package via Composer:

composer require omegaalfa/fiber-driver

Creating a Fiber

use src\fibers\FiberDriver;
use src\fibers\DefaultContext;

$driver = new FiberDriver();
$context = new DefaultContext(['data' => 'initial']);

$fiber = $driver->createFiber(function() {
    // Fiber logic here
    echo "Fiber started\n";
}, $context);

Starting|Stoping a Fiber

$driver->start($fiber);
$driver->stop($fiber);

Running a Fiber with Automatic Management

$context = new DefaultContext(['data' => 'initial']);

$result = $driver->run(function() {
    // Fiber logic here
    echo "Fiber started\n";
}, [], $context);

print_r($result);

Handling Context Data

$context = new DefaultContext(['data' => 'initial']);

$driver->run(function() use ($context) {
    // Modify context data
    $context->setContextData(['data' => 'modified']);
}, [], $context);

print_r($context->getContextData()); // Outputs: ['data' => 'modified']

Handling Exceptions

$context = new DefaultContext();

$driver->run(function() {
    throw new Exception("An error occurred");
}, [], $context);

if ($exception = $context->getContextException()) {
    echo "Exception: " . $exception->getMessage();
}

Contributing

Contributions are welcome! Please submit a pull request or open an issue to discuss your ideas.

License

This project is licensed under the MIT License.

fiberrunner's People

Contributors

omegaalfa avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.