leveldb 0+20120125.git3c8be10-1 source package in Ubuntu

Changelog

leveldb (0+20120125.git3c8be10-1) unstable; urgency=low


  * New upstream snapshot.
  * Build with snappy. (Closes: #654291)

 -- Alessio Treglia <email address hidden>  Thu, 02 Feb 2012 13:21:01 +0100

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
Precise release universe database

Downloads

File Size SHA-256 Checksum
leveldb_0+20120125.git3c8be10-1.dsc 2.0 KiB c3a0e9fc36c275aa18332121d2503b3e6e1efdf9daf939e59301bdf6cb17771f
leveldb_0+20120125.git3c8be10.orig.tar.bz2 136.0 KiB b73bd9d0fa259a4350b4ec5e25d5816ee4788f2bf332c184da8178785dcf6c63
leveldb_0+20120125.git3c8be10-1.debian.tar.gz 9.7 KiB d88d1a86157c63380e0220114c393801a2d448d0922cf775e9e8f941b22e2467

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

 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.