leveldb 1.14.0-3 source package in Ubuntu

Changelog

leveldb (1.14.0-3) unstable; urgency=low


  [ paul cannon ]
  * Ship leveldb-dbg package. (Closes: #728916)

 -- Alessio Treglia <email address hidden>  Thu, 07 Nov 2013 09:35:19 +0000

Upload details

Uploaded by:
Alessio Treglia
Uploaded to:
Sid
Original maintainer:
Alessio Treglia
Architectures:
any all
Section:
database
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
leveldb_1.14.0-3.dsc 2.0 KiB b61bf2b38e06578af4726a82dfafdc55c881b4a9eeb25df45f37b405eee307c1
leveldb_1.14.0.orig.tar.gz 203.4 KiB 9122d2c248ba40d6ce46d0c3e4738fcfa941d0d93fdba20a101471a98e8b00a3
leveldb_1.14.0-3.debian.tar.gz 10.4 KiB 691592f050d0fe53f917b2214e8c54827f2e95a2a1c1ea0f245a613d8b6812eb

Available diffs

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-dbg: fast key-value storage library (debug symbols)

 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 debugging symbols.

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.

libleveldb1: 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.