library sync
Synchronized function calls for PHP
morris/sync
Synchronized function calls for PHP
- Monday, January 5, 2015
- by morris
- Repository
- 1 Watchers
- 3 Stars
- 33 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 2 Versions
- 0 % Grown
Synchronization for PHP
<?php
// Call a function in a mutually exclusive way using a lockfile.
// A process will only block other processes and never block itself,
// so you can safely nest synchronized operations.
Sync::call( function() {
// do critical stuff like IO here
} );
// Set default lockfile
Sync::$lock = 'my/default/.lock';
// Use different lockfile by passing it as the second argument
Sync::call( $func, 'my/other/.lock' );
Requirements
Installation
The composer package name is morris/sync. You can also download or
fork the repository., (*1)
License
Sync is licensed under the MIT License. See LICENSE.md for details., (*2)