leveldb 1.18-5 source package in Ubuntu
Changelog
leveldb (1.18-5) unstable; urgency=medium * Integrate ARM64 support patch to 0001-debian-ports.patch . -- Laszlo Boszormenyi (GCS) <email address hidden> Tue, 25 Aug 2015 21:21:22 +0200
Upload details
- Uploaded by:
- Alessio Treglia
- Uploaded to:
- Sid
- Original maintainer:
- Alessio Treglia
- Architectures:
- any all
- Section:
- database
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Xenial | release | main | database |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
leveldb_1.18-5.dsc | 2.1 KiB | c4f3337c2f93fe8edf2fd2b1efdf0e0a5a73a63a81c6f75de6d4214ae865ccc2 |
leveldb_1.18.orig.tar.gz | 204.5 KiB | 4aa1a7479bc567b95a59ac6fb79eba49f61884d6fd400f20b7af147d54c5cee5 |
leveldb_1.18-5.debian.tar.xz | 10.0 KiB | 6e6c012e3bbf52e595ad84d8bb70bc5b27751209ed13aea933a138652f836fae |
Available diffs
No changes file available.
Binary packages built by this source
- leveldb-doc: No summary available for leveldb-doc in ubuntu zesty.
No description available for leveldb-doc in ubuntu zesty.
- libleveldb-dbg: No summary available for libleveldb-dbg in ubuntu zesty.
No description available for libleveldb-dbg in ubuntu zesty.
- libleveldb-dev: No summary available for libleveldb-dev in ubuntu zesty.
No description available for libleveldb-dev in ubuntu zesty.
- libleveldb-dev-dbgsym: debug symbols for package libleveldb-dev
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.
- libleveldb1v5: No summary available for libleveldb1v5 in ubuntu yakkety.
No description available for libleveldb1v5 in ubuntu yakkety.
- libleveldb1v5-dbgsym: debug symbols for package libleveldb1v5
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.