定制 ivopetkov/lock 二次开发

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

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

ivopetkov/lock

最新稳定版本:v1.4.0

Composer 安装命令:

composer require ivopetkov/lock

包简介

Locks library for PHP

README 文档

README

A simple locking library ... that is based on file locking (and that's awesome).

Latest Stable Version License

Why you need it

Imagine you have two tasks that you do not want to overlap (they modify the same data for example). Using this library will bring you peace of mind.

Keep in mind

The library uses file locking mechanism to ensure it works correctly. This means that it can be used only on applications/instances/processes that share a common file system. A website on one server does just that.

Install via Composer

composer require ivopetkov/lock

Usage

Using the following two methods (acquire() and release()) will ensure no two applications/instances/processes execute the code between them.

<?php
require 'vendor/autoload.php';
use IvoPetkov\Lock;

Lock::acquire('lock1'); // Acquires a lock and pauses other applications/instances/processes until the lock is released.
// Do something awesome
Lock::release('lock1'); // Releases the acquired lock.

Documentation

Full documentation is available as part of this repository.

Configuration

The default timeout to acquire a lock is 1.5 seconds. You can modify it by calling the following method:

Lock::setDefaultLockTimeout(2.5);

The temporary lock files needed by the library are stored in your OS temp dir. You can modify it by calling the following method:

Lock::setLocksDir('/some/other/temp/dir/');

If multiple applications use this library, you can call the following methods to prefix the keys provided. This way the different applications can use the same keys without interference.

Lock::setKeyPrefix('app1');

License

This project is licensed under the MIT License. See the license file for more information.

Contributing

Feel free to open new issues and contribute to the project. Let's make it awesome and let's do in a positive way.

Author

This library is created and maintained by Ivo Petkov (ivopetkov.com).

统计信息

  • 总下载量: 13.04k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-05-27