项目作者: reshadman

项目描述 :
Adds optimistic locking feature to eloquent models.
高级语言: PHP
项目地址: git://github.com/reshadman/laravel-optimistic-locking.git
创建时间: 2018-06-03T13:18:41Z
项目社区:https://github.com/reshadman/laravel-optimistic-locking

开源协议:MIT License

下载


Laravel Optimistic Locking

Build Status

Adds optimistic locking feature to Eloquent models.

Installation

  1. composer require reshadman/laravel-optimistic-locking

This package supports Laravel 5.5., 5.6., 5.7., 5.8., and 6.* .

Usage

Basic usage

use the \Reshadman\OptimisticLocking\OptimisticLocking trait
in your model:

  1. <?php
  2. class BlogPost extends Model {
  3. use OptimisticLocking;
  4. }

and add the integer lock_version field to the table of the model:

  1. <?php
  2. $schema->integer('lock_version')->unsigned()->nullable();

Then you are ready to go, if the same resource is edited by two
different processes CONCURRENTLY then the following exception
will be raised:

  1. <?php
  2. \Reshadman\OptimisticLocking\StaleModelLockingException::class;

You should catch the above exception and act properly based
on your business logic.

Maintaining lock_version during business transactions

You can keep track of a lock version during a business transaction by informing your API or HTML client about the current version:

  1. <input type="hidden" name="lock_version" value="{{$blogPost->lock_version}}"

and in controller:

  1. <?php
  2. // Explicitly setting the lock version
  3. class PostController {
  4. public function update($id)
  5. {
  6. $post = Post::findOrFail($id);
  7. $post->lock_version = request('lock_version');
  8. $post->save();
  9. // You can also define more implicit reusable methods in your model like Model::saveWithVersion(...$args);
  10. // or just override the default Model::save(...$args); method which accepts $options
  11. // Then automatically read the lock version from Request and set into the model.
  12. }
  13. }

So if two authors are editing the same content concurrently,
you can keep track of your Read State, and ask the second
author to rewrite his changes.

Disabling and enabling optimistic locking

You can disable and enable optimistic locking for a specific
instance:

  1. <?php
  2. $blogPost->disableLocking();
  3. $blogPost->enableLocking();

By default optimistic locking is enabled when you use
OptimisticLocking trait in your model, to alter the default
behaviour you can set the lock strictly to false:

  1. <?php
  2. class BlogPost extends \Illuminate\Database\Eloquent\Model
  3. {
  4. use \Reshadman\OptimisticLocking\OptimisticLocking;
  5. protected $lock = false;
  6. }

and then you may enable it: $blogPost->enableLocking();

Use a different column for tracking version

By default the lock_version column is used for tracking
version, you can alter that by overriding the following method
of the trait:

  1. <?php
  2. class BlogPost extends \Illuminate\Database\Eloquent\Model
  3. {
  4. use \Reshadman\OptimisticLocking\OptimisticLocking;
  5. /**
  6. * Name of the lock version column.
  7. *
  8. * @return string
  9. */
  10. protected static function lockVersionColumn()
  11. {
  12. return 'track_version';
  13. }
  14. }

What is optimistic locking?

For detailed explanation read the concurrency section of Patterns of Enterprise Application Architecture by Martin Fowler.

There are two way to approach generic concurrency race conditions:

  1. Do not allow other processes (or users) to read and update the same
    resource (Pessimistic Locking)
  2. Allow other processes to read the same resource concurrently, but
    do not allow further update, if one of the processes updated the resource before the others (Optimistic locking).

Laravel allows Pessimistic locking as described in the documentation,
this package allows you to have Optimistic locking in a rails like way.

What happens during an optimistic lock?

Every time you perform an upsert action to your resource(model),
the lock_version counter field in the table is incremented by 1,
If you read a resource and another process updates the resource
after you read it, the true version counter is incremented by one,
If the current process attempts to update the model, simply a
StaleModelLockingException will be thrown, and you should
handle the race condition (merge, retry, ignore) based on your
business logic. That is simply via adding the following criteria
to the update query of a optimistically lockable model:

  1. <?php
  2. $query->where('id', $this->id)
  3. ->where('lock_version', $this->lock_version)
  4. ->update($changes);

If the resource has been updated before your update attempt, then the above will simply
update no records and it means that the model has been updated before
current attempt or it has been deleted.

Why don’t we use updated_at for tracking changes?

Because they may remain the same during two concurrent updates.

Running tests

Clone the repo, perform a composer install and run:

vendor/bin/phpunit

License

The MIT License (MIT). Please see License File for more information.
ense (MIT). Please see License File for more information.