Download the PHP
package cosmic-beacon/critical-section without Composer
On this page you can find all versions of the php package
cosmic-beacon/critical-section. It is possible to download/install
these versions without Composer. Possible dependencies are resolved
automatically.
Vendor cosmic-beacon Package critical-section Short Description Handles critical sections while executing multiple php scripts in parallel. Useful for cron and any other recurrently run scripts. License
MIT
After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.
Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.
In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories.
In this case some credentials are needed to access such packages.
Please use the auth.json textarea to insert credentials, if a package is coming from a private repository.
You can look here for more information.
Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
To use Composer is sometimes complicated. Especially for beginners.
Composer needs much resources. Sometimes they are not available on a simple webspace.
If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
This library handles problem of code critical section which should be executed only once at a time.
Example use case
You have a cron task that is executing every minute, but it takes some time to execute. When server load's go critical it can take more
than minute, which leads to bugs as a same cron is executed in multiple process at the same time.
You can encapsulate this code into critical section with use of this library.
This code example does take care of critical sections. You say which critical section should be entered. In this case
it is cron_long_task. No other script can enter this critical section until the original one leaves the critical section.
Keep in mind that critical section is left even if the script ends, or CriticalSection object is destructed.
If you want to enter critical section you can't script will wait until it can be entered. If you need to skip code which
is already in critical section use timeout or canEnter method.
Timeout critical section
You can also do timeout enter. This way you can say explicitly say how long should the script wait to enter critical section.
This is useful if you want to do something, but you know it only make sense in some time interval.
Keep in mind that you have to check if enter returned true if you use timeout.
Check if code can enter critical section
If you are using every minute cron (or even faster), we can assume that you can skip one or two calls here and there.
To do so you can check if critical section can be entered before entering it.
Another way to do so is to enter critical section with zero timeout.
Composer command for our command line client (download client)This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free.Standard composer command
The package cosmic-beacon/critical-section contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.