syncache 1.4-1.1 source package in Ubuntu

Changelog

syncache (1.4-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Fri, 08 Jan 2021 02:41:32 +0100

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe ruby
Noble release universe ruby
Mantic release universe ruby
Lunar release universe ruby
Jammy release universe ruby

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
syncache_1.4-1.1.dsc 1.9 KiB e56ddcfa82f460a5ff696c6e4ab212b080c5e22047921e72eb21ece703085fc4
syncache_1.4.orig.tar.gz 28.7 KiB d2beb1245e0815e348439148f92a38f145d8625471cf62f61b182c7c2b4875fc
syncache_1.4-1.1.debian.tar.xz 5.0 KiB 7c1ddd69636bfe67a6086016089c1bc876384396cd0e16e59f96ddd0f0d073d6

Available diffs

No changes file available.

Binary packages built by this source

syncache: Thread-safe time-limited cache for Ruby

 SynCache stores cached objects in a Hash that is protected by an advanced
 two-level locking mechanism which ensures that:
 .
  * Multiple threads can add and fetch objects in parallel.
  * While one thread is working on a cache entry, other threads can access
    the rest of the cache with no waiting on the global lock, no race
    conditions nor deadlock or livelock situations.
  * While one thread is performing a long and resource-intensive
    operation, other threads that request the same data will be put on hold,
    and as soon as the first thread completes the operation, the result will be
    returned to all threads.
 .
 This package provides SynCache module for Ruby and a DRb server that exports a
 SynCache::Cache object for use in Ruby programs.