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

Changelog

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

  [ Anton Gladky ]
  * Remove comit-hashes from changelog

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Remove unnecessary get-orig-source-target.
  * Update standards version to 4.6.2, no changes needed.

  [ Mike Gabriel ]
  * Revert "Remove unnecessary get-orig-source-target."

  [ Marius Gripsgard ]
  * debian/patches: Add patch to fix FTBFS with googletest 1.13.0
    (closes: #1041132)
  * debian/control: Add myself as uploader

 -- Marius Gripsgard <email address hidden>  Wed, 26 Jul 2023 20:29:23 +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
Mantic release universe libs

Downloads

File Size SHA-256 Checksum
persistent-cache-cpp_1.0.5-5.dsc 1.8 KiB 685699e565bdd39900f15008f58161f3355e7931b7263bc97e9597de1bde460e
persistent-cache-cpp_1.0.5.orig.tar.gz 69.3 KiB f9042b05b5d3e9fbf95c0a8fea2f02de0ccf6a9bacb0e923f163f9e501d61c18
persistent-cache-cpp_1.0.5-5.debian.tar.xz 5.2 KiB b992b3a97d926ae620fd140b812d7ab0791c2be14e7ae2da5aa7f8bec7d5e146

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.