stekycz/critical-section

Lightweight class supporting critical section locking

v2.1.0 2020-09-17 23:36 UTC

This package is not auto-updated.

Last update: 2024-03-16 23:57:55 UTC


README

Description

Lightweight class supporting critical section locking in PHP.

It requires PHP >= 7.1 and no other dependency.

Example

$pdo = new PDO('...');
$driver = new Bileto\CriticalSection\Driver\PdoPgsqlDriver($pdo);
$criticalSection = new Bileto\CriticalSection\CriticalSection($driver);

$criticalSection->enter('Section Label');

// Perform set of steps of critical tasks

$criticalSection->leave('Section Label');