syncache 1.1-1 source package in Ubuntu

Changelog

syncache (1.1-1) unstable; urgency=low

  * New upstream version:
    - Ruby 1.9 compatibility patch merged upstream
    - new RemoteCache wrapper class.
  * Point debian/watch at GitHub.
  * Use --retry when stopping syncache-drb.
  * Move piddir creation from postinst to init script.
  * Exclude monkey patches from rdoc.

syncache (1.0-1) unstable; urgency=low

  * Initial release. Closes: #573966 (ITP).
 -- Ubuntu Archive Auto-Sync <email address hidden>   Wed,  19 Oct 2011 13:45:31 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
ruby
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
syncache_1.1.orig.tar.gz 28.8 KiB 855201a44b305c19f2176592a4b6975aa1c3442b9301cf6e06cabe1e56fef6dc
syncache_1.1-1.debian.tar.gz 3.9 KiB 753e05e570a5a26923fdd3a69c6ef6d6a5ef559ef8f86e55a0a2240c6f99b0c3
syncache_1.1-1.dsc 1.3 KiB db35e9af0b00ae5eb4581425174476ef2179757139724b03657c2f880cf21096

View changes file

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.