leveldb 1.22-3ubuntu1 source package in Ubuntu
Changelog
leveldb (1.22-3ubuntu1) focal; urgency=medium * Make autopkgtests cross-test-friendly. -- Steve Langasek <email address hidden> Fri, 06 Dec 2019 09:34:02 -0800
Upload details
- Uploaded by:
- Steve Langasek
- Uploaded to:
- Focal
- Original maintainer:
- Ubuntu Developers
- Architectures:
- any all
- Section:
- database
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
leveldb_1.22.orig.tar.gz | 233.8 KiB | 55423cac9e3306f4a9502c738a001e4a339d1a38ffbee7572d4a07d5d63949b2 |
leveldb_1.22-3ubuntu1.debian.tar.xz | 9.1 KiB | 5561cfe1fa582847914e258a1142c532331a6aae4838c18374d62997a24d903f |
leveldb_1.22-3ubuntu1.dsc | 2.1 KiB | 2e4c7781278897b768b2e21b9cf7b9a0bf83c9386ba3b57389ecc41776ac52ea |
Available diffs
- diff from 1.22-3 (in Debian) to 1.22-3ubuntu1 (831 bytes)
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