persistent-cache-cpp 1.0.5-4 source package in Ubuntu

Changelog

persistent-cache-cpp (1.0.5-4) unstable; urgency=medium

  * Team upload.

  [ Mike Gabriel ]
  * [4162d23] debian/: Update upstream Git repo URL.

  [ Adrian Bunk ]
  * [969fe7b] Include missing header. (Closes: #1013012)

  [ Anton Gladky ]
  * [24d38ff] Add debian/.gitlab-ci.yml.
  * [a1d7fa7] Set upstream metadata fields: Repository.
  * [414caec] Remove obsolete field Name from debian/upstream/metadata
              (already present in machine-readable debian/copyright).
  * [12adb1b] Update standards version to 4.6.1, no changes needed.
  * [0a467ff] Minor update of install files

 -- Anton Gladky <email address hidden>  Wed, 05 Oct 2022 22:27:53 +0200

Upload details

Uploaded by:
Debian UBports Team
Uploaded to:
Sid
Original maintainer:
Debian UBports Team
Architectures:
any all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe libs

Downloads

File Size SHA-256 Checksum
persistent-cache-cpp_1.0.5-4.dsc 2.4 KiB c11a1780ef3ba44ec93fb0322f77e68b7f151f19efd8c9e3706c26327cb7704a
persistent-cache-cpp_1.0.5.orig.tar.gz 69.3 KiB f9042b05b5d3e9fbf95c0a8fea2f02de0ccf6a9bacb0e923f163f9e501d61c18
persistent-cache-cpp_1.0.5-4.debian.tar.xz 4.8 KiB 9a799da09a44503b1d07ff9fed8c89f91b71ac00cc0f3368bdde91226582a598

Available diffs

No changes file available.

Binary packages built by this source

persistent-cache-cpp-dev: Cache of key-value pairs with persistent storage for C++ 11

 This API provides a cache of key-value pairs with a backing store. It is
 intended for caching arbitrary (possibly large) amounts of data, such as
 might be needed by a web browser cache. The cache supports both
 least-recently-used and time-to-live expiration policies. It scales to
 large numbers (millions) of entries and is very fast. The implementation
 is based on leveldb and typically provides throughput many times larger
 than the I/O bandwidth to disk.
 .
 The cache is robust in the face of crashes and power loss. After a
 re-start, it is guaranteed to be in a consistent state with correct
 data. Some number of updates that were made just prior to a power loss
 or kernel crash can be lost; however, if just the calling process
 crashes, all updates that were made prior to the crash are guaranteed to
 be on disk.

persistent-cache-cpp-doc: Documentation for persistent-cache-cpp-dev

 This API provides a cache of key-value pairs with a backing store. It is
 intended for caching arbitrary (possibly large) amounts of data, such as
 might be needed by a web browser cache. The cache supports both
 least-recently-used and time-to-live expiration policies. It scales to
 large numbers (millions) of entries and is very fast. The implementation
 is based on leveldb and typically provides throughput many times larger
 than the I/O bandwidth to disk.
 .
 The cache is robust in the face of crashes and power loss. After a
 re-start, it is guaranteed to be in a consistent state with correct
 data. Some number of updates that were made just prior to a power loss
 or kernel crash can be lost; however, if just the calling process
 crashes, all updates that were made prior to the crash are guaranteed to
 be on disk.
 .
 This package provides examples and the API reference.