readers-writer v1.0.7

A simple readers writer lock for crystal lang

Readers Writer Lock

CI

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

Repository

readers-writer

Owner
Statistic
  • 5
  • 0
  • 0
  • 5
  • 0
  • almost 3 years ago
  • May 20, 2019
License

MIT License

Links
Synced at

Sun, 05 May 2024 08:23:57 GMT

Languages