定制 pteich/simplelock 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

pteich/simplelock

Composer 安装命令:

composer require pteich/simplelock

包简介

A simple locking/semaphore library for PHP 5.3+ with different adapters. Prevents flooding and multiple execution of code parts.

README 文档

README

Overview

A simple locking/semaphore library for PHP 5.3+ with different adapters. Helps to keep code thread safe and prevent flooding or multiple execution of time consumptive code that could otherwise break your application.

You can set locks for a specific time duration. Locks can also be autoreleased on script termination. This assures that a task can only executed once at a time.

Installation

With Composer

Just add pteich/simplelock to your composer.json require:

"pteich/simplelock":  "dev-master"

Without Composer

Download archive from Github and expand it to a directory. There is no autoloader provided so you'll have to deal with it for your own. You can register Simplelock directory with your PSR-4 compatible autoloader.

Usage

// create apc adapter
$adapter = new \Simplelock\Adapter\Apc();

// create simplelock object using $adapter and use autounlock feature
$lock = new \Simplelock(
	$adapter,
	true
);

$ttl = 60; // seconds to lock
$mykey = 'my key'; // key for this lock

if (!$lock->locked($mykey)) {
	// lock now		
	$lock->lock($mykey,$ttl);
	// do hard work here
}

Adapters

First argumente if the Simplelock constructor is an adapter object. Supported adapters are:

  • mock - unlock always, for testing purposes
  • file - file backend, keeps semaphore files in configurable directory
  • apc - apc backend, keeps values in memory

APC Adapter

No config must be provided. APC extension is required. Values are delete from memory on unlock.

File Adapter

Provide an array with path key pointing to a valid directory to store semaphore files. This adapter deletes files on unlock.

Example:

$adapter = new \Simplelock\Adapter\File(array(
	'path' => __DIR__ . '/lock'
));

Mock Adapter

This adapter keeps everything always unlocked. Useful for testing or to disable locking at all without removing calls to Simplelock.

Autounlock

If true is provided as second parameter to the Simplelock constructor all locks are automatically released on script termination.

统计信息

  • 总下载量: 13
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-12-05

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固