定制 matthimatiker/command-locking-bundle 二次开发

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

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

matthimatiker/command-locking-bundle

Composer 安装命令:

composer require matthimatiker/command-locking-bundle

包简介

Adds an optional locking feature to all console commands that can be used to prevent parallel execution.

README 文档

README

Build Status Coverage Status

Sometimes you want to ensure that a Symfony console command does not run in parallel. This bundle adds an optional locking feature to all console commands that can be used to prevent parallel execution.

Installation

Install the bundle via Composer:

composer require matthimatiker/command-locking-bundle

Then register the bundle in your AppKernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new \Matthimatiker\CommandLockingBundle\MatthimatikerCommandLockingBundle()
    );
    // ...
}

Usage

Simply pass the --lock option to any command to ensure that parallel runs are prohibited:

app/console cache:warmup --lock

If the command did not terminate yet and the same command is called again (in lock mode), then it is simply skipped and a notice is shown.

The default locking implementation relies on the filesystem and uses Symfony's LockHandler. This avoids parallel execution as long as your application runs on a single system. If you need a distributed lock, then you will have to write your own lock manager.

Custom Lock Managers

A custom lock manager must implement \Matthimatiker\CommandLockingBundle\Locking\LockManagerInterface. Afterwards it must be registered as service and tagged as matthimatiker_command_locking.console.lock_manager:

my.custom_lock_manager:
    class: My\Custom\LockManager
    tags:
        - { name: matthimatiker_command_locking.console.lock_manager, alias: custom }

An alias must be defined together with the tag (custom in this example) and is used to reference the new lock manager:

app/console cache:warmup --lock=custom

Known Issues

When sub-command are called as described in the official documentation, then locking cannot be used for the sub-commands as the life-cycle events are not fired.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-05-16

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固