PHP code example of snowio / magento2-lock
1. Go to this page and download the library: Download snowio/magento2-lock library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
snowio / magento2-lock example snippets
namespace Vendor\Module\Model\Accessors;
class ResourceAccessor
{
private $lockService;
public function __construct(
SnowIO\Lock\Api\LockService $lockService
) {
$this->lockService = $lockService
}
public function access($resource)
{
$lockName = //.. resource lock name
//try acquire the lock
if (!$this->lockService->acquireLock($lockName, 0)) {
//Lock was not acquired ...
}
//Lock was acquired
try {
// Process $resource
} finally {
//release the lock
$this->lockService->releaseLock($lockName);
}
}
}
composer magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento cache:flush