PHP code example of eleme / rlock

1. Go to this page and download the library: Download eleme/rlock 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/ */

    

eleme / rlock example snippets




use Eleme\Rlock\Factory;
use Predis\Client;

ry->make('test');



use Eleme\Rlock\Predis;

 $redis->lock('lock1');
echo $lock->acquire() ? 'true' : 'fasel', "\n";
 php


use Eleme\Rlock\Lock;
use Predis\Client;

lock1');
$lock1->acquire();
// release it by manually or it will be autoreleased.
$lock1->release();


// pass some options like timeout and interval.
$lock2 = new Lock($redis, 'lock2', array('timeout' => 5000, 'interval' => 500));
echo $lock2->acquire() ? 'true' : 'false', "\n";

// sometimes you may need a non-block lock.
$lock3 = new Lock($redis, 'lock3', array('blocking' => false));
echo $lock3->acquire() ? 'true' : 'false', "\n";
$lock4 = new Lock($redis, 'lock3', array('blocking' => false));
echo $lock4->acquire() ? 'true' : 'false', "\n";