mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: lmdb: Expand description.
* gnu/packages/databases.scm (lmdb)[synopsis]: Capitalise. [description]: Elaborate.
This commit is contained in:
parent
9b8016612c
commit
fda852ff40
1 changed files with 12 additions and 2 deletions
|
@ -16,6 +16,7 @@
|
||||||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
||||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1356,8 +1357,17 @@ (define-public lmdb
|
||||||
(("/usr/local") (assoc-ref outputs "out")))
|
(("/usr/local") (assoc-ref outputs "out")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "https://symas.com/products/lightning-memory-mapped-database")
|
(home-page "https://symas.com/products/lightning-memory-mapped-database")
|
||||||
(synopsis "Lightning memory-mapped database library")
|
(synopsis "Lightning Memory-Mapped Database library")
|
||||||
(description "Lightning memory-mapped database library.")
|
(description
|
||||||
|
"The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance
|
||||||
|
transactional database. Unlike more complex relational databases, LMDB handles
|
||||||
|
only key-value pairs (stored as arbitrary byte arrays) and relies on the
|
||||||
|
underlying operating system for caching and locking, keeping the code small and
|
||||||
|
simple.
|
||||||
|
The use of ‘zero-copy’ memory-mapped files combines the persistence of classic
|
||||||
|
disk-based databases with high read performance that scales linearly over
|
||||||
|
multiple cores. The size of each database is limited only by the size of the
|
||||||
|
virtual address space — not physical RAM.")
|
||||||
(license license:openldap2.8)))
|
(license license:openldap2.8)))
|
||||||
|
|
||||||
(define-public libpqxx
|
(define-public libpqxx
|
||||||
|
|
Loading…
Reference in a new issue