Download the PHP package hokoo/wp-lock without Composer

On this page you can find all versions of the php package hokoo/wp-lock. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

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.
Please rate this library. Is it a good library?

Informations about the package wp-lock

WP Lock

PHPUnit Tests

This was previously a fork from original repo soulseekah/wp-lock by Gennady Kovshenin. Now here is the standalone repo with such changes as:

  • Custom database table is used as the WPDB locks' storage that allows to manage locks in simple and convenient way.
  • Fast: making one lock takes up to one single query instead of 11 and more.
  • Readable: the code is well documented and easy to understand.

WP Lock's Preconditions

Consider the following user balance topup function that is susceptible to a race condition:

Try to call the above code 100 times in 16 threads. The balance will be less than it is supposed to be.

The code below is thread safe.

Usage

Require via Composer composer require hokoo/wp-lock in your plugin.

Don't forget to include the Composer autoloader in your plugin and declare using of the WP_Lock class.

Acquire a read blocking lock without a timeout.

Lock levels

Blocking policy

Timeout policy

Lock Existence Check

You may also want to check if a lock is acquired by another process without actually trying to acquire it.

Caveats

In highly concurrent setups you may get Deadlock errors from MySQL. This is normal. The library handles these gracefully and retries the query as needed.


All versions of wp-lock with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
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 hokoo/wp-lock contains the following files

Loading the files please wait ....