leveldb 1.23-4 source package in Ubuntu

Changelog

leveldb (1.23-4) unstable; urgency=medium

  [ Nobuhiro Ban <email address hidden> ]
  * Fence code blocks for leveldb-doc markdown files (closes: #1020283).

 -- Laszlo Boszormenyi (GCS) <email address hidden>  Mon, 19 Sep 2022 20:40:37 +0200

Upload details

Uploaded by:
Laszlo Boszormenyi
Uploaded to:
Sid
Original maintainer:
Laszlo Boszormenyi
Architectures:
any all
Section:
database
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe database

Downloads

File Size SHA-256 Checksum
leveldb_1.23-4.dsc 2.0 KiB 1eae53db8925a1d96f43673eb94c7a4f6b25b6edf283753b29fe80c1068f8173
leveldb_1.23.orig.tar.gz 237.2 KiB 9a37f8a6174f09bd622bc723b55881dc541cd50747cbd08831c2a82d620f6d76
leveldb_1.23-4.debian.tar.xz 10.0 KiB fd0b3772e20b6c85a9f133cc21cb1bce9015fd66e4a516576e3efef9cca8428f

No changes file available.

Binary packages built by this source

leveldb-doc: LevelDB documentation

 LevelDB is a fast key-value storage library written at Google that
 provides an ordered mapping from string keys to string values.
 .
 This package provides the developers reference for LevelDB.

libleveldb-dev: fast key-value storage library (development files)

 LevelDB is a fast key-value storage library written at Google that
 provides an ordered mapping from string keys to string values.
 .
 This package provides the development files.

libleveldb1d: fast key-value storage library

 LevelDB is a fast key-value storage library written at Google that
 provides an ordered mapping from string keys to string values.
 .
 Features:
  * Keys and values are arbitrary byte arrays.
  * Data is stored sorted by key.
  * Callers can provide a custom comparison function to override
    the sort order.
  * The basic operations are Put(key, value), Get(key), Delete(key).
  * Multiple changes can be made in one atomic batch.
  * Users can create a transient snapshot to get a consistent view of
    data.
  * Forward and backward iteration is supported over the data.
  * Data is automatically compressed using the Snappy compression
    library.
  * External activity (file system operations etc.) is relayed through
    a virtual interface so users can customize the operating system
    interactions.
  * Detailed documentation about how to use the library is included with
    the source code.
 .
 Limitations:
  * This is not a SQL database. It does not have a relational data model,
    it does not support SQL queries, and it has no support for indexes.
  * Only a single process (possibly multi-threaded) can access a
    particular database at a time.
  * There is no client-server support builtin to the library.
    An application that needs such support will have to wrap their own
    server around the library.
 .
 This package provides the shared library.

libleveldb1d-dbgsym: debug symbols for libleveldb1d