persistent-cache-cpp 1.0.7-1 source package in Ubuntu

Changelog

persistent-cache-cpp (1.0.7-1) unstable; urgency=medium

  * New upstream release.
  * debian/patches:
    + Drop all patches. All applied upstream.
  * debian/copyright:
    + Update copyright attribution for debian/.

 -- Mike Gabriel <email address hidden>  Thu, 01 Feb 2024 15:12:14 +0100

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
Oracular release universe libs
Noble release universe libs

Downloads

File Size SHA-256 Checksum
persistent-cache-cpp_1.0.7-1.dsc 2.4 KiB 426b3776eb498f755f3cfab742456aea472436bf116c0b8f6566ec5681db5a02
persistent-cache-cpp_1.0.7.orig.tar.xz 55.5 KiB d3b20ed5877adc4b15cc3136223a3e18ef0209cf6d2b8f1803469c771bb7e804
persistent-cache-cpp_1.0.7-1.debian.tar.xz 4.3 KiB 42277d0f31c86ca971f574eb0be0e8b0f00b33b72228036c6ef5a072ac98e85b

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.