syncache 1.4-1.2 source package in Ubuntu

Changelog

syncache (1.4-1.2) unstable; urgency=medium

  * Non-maintainer upload.
  * No source change upload to move systemd units into /usr.

 -- Chris Hofstaedtler <email address hidden>  Sat, 25 May 2024 10:03:21 +0200

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

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
syncache_1.4-1.2.dsc 1.9 KiB 94055ef23b6290f64ba6958825a3c46f1c11d7fa3153763a01cecf2ab6991cb1
syncache_1.4.orig.tar.gz 28.7 KiB d2beb1245e0815e348439148f92a38f145d8625471cf62f61b182c7c2b4875fc
syncache_1.4-1.2.debian.tar.xz 5.1 KiB 8ee4cd0bca1517dc448c041e13a04f29b73ff3ad9cfcea558b47fae84424b41b

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.