yzh52521/think-lock

thinkphp lock plugin

v1.0.2 2023-02-10 02:09 UTC

This package is auto-updated.

Last update: 2024-04-10 04:33:53 UTC


README

简介

在 thinkphp 框架中简化使用业务锁功能,使用 symfony/lock

安装

composer require yzh52521/think-lock

使用

<?php

namespace app\controller;

use yzh52521\ThinkLock\Locker;

class Cash {
    public function changeCash()
    {
        $lock = Locker::lock($key);
        if (!$lock->acquire()) {
            throw new \Exception('操作太频繁,请稍后再试');
        }
        try {
            // 修改用户金额
        } finally {
            $lock->release();
        }
        
        return 'ok';
    }
}

更多操作参考:symfony/lock 文档