rwlock

Simple readers writer lock
1.0.7 Latest release released

Readers Writer Lock

Build Status

Allows any number of concurrent readers, but only one concurrent writer (And while the "write" lock is taken, no read locks can be obtained either) Access is fair. (read, write, read, write requests will occur in the order they arrived.)

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      rwlock:
        github: spider-gazelle/readers-writer
    
  2. Run shards install

Usage

require "rwlock"

balance = 10
rwlock = RWLock.new

# Reading the balance
rwlock.read { puts balance.inspect }

# Modifying
rwlock.write { balance += 10 }
rwlock.synchronize { balance += 10 }

# Reentrant
rwlock.read do
  rwlock.write { balance = 100 } if balance > 100
end

rwlock:
  github: spider-gazelle/readers-writer
  version: ~> 1.0.7
License MIT
Crystal >= 0.36.1

Authors

Dependencies 0

Development Dependencies 1

  • ameba
    {'github' => 'veelenga/ameba'}

Dependents 0

Last synced .
search fire star recently