golang-github-tidwall-buntdb 1.1.7-1 source package in Ubuntu

Changelog

golang-github-tidwall-buntdb (1.1.7-1) unstable; urgency=medium

  * New upstream version 1.1.7

 -- Andreas Henriksson <email address hidden>  Wed, 13 Jan 2021 21:47:26 +0100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-tidwall-buntdb_1.1.7-1.dsc 2.4 KiB 57cefdb74059d60a1dadf19441e073b5c8b19f815019bfe9e2bf6e48821a065f
golang-github-tidwall-buntdb_1.1.7.orig.tar.gz 129.0 KiB 29970b68cc739627a32c50b4883e7e579c2b6a78ac98e314be835323a55aa0cd
golang-github-tidwall-buntdb_1.1.7-1.debian.tar.xz 3.0 KiB a57336330953dc47610496bdfdb0be48db152a1aee02d79fca91d09b8f8be418

Available diffs

No changes file available.

Binary packages built by this source

golang-github-tidwall-buntdb-dev: embeddable, in-memory key/value database for Go

 BuntDB is a low-level, in-memory, key/value store in pure Go. It
 persists to disk, is ACID compliant, and uses locking for multiple
 readers and a single writer. It supports custom indexes and geospatial
 data. It's ideal for projects that need a dependable database and favor
 speed over data size.
 .
 Features:
  * In-memory database for fast reads and writes
  * Embeddable with a simple API
  * Spatial indexing for up to 20 dimensions;
    Useful for Geospatial data
  * Index fields inside JSON documents
  * Collate i18n Indexes using the optional collate
    package
  * Create custom indexes for any data type
  * Support for multi value indexes; Similar to a SQL multi column index
  * Built-in types that are easy to get up & running;
    String, Uint, Int, Float
  * Flexible iteration of data; ascending, descending, and ranges
  * Durable append-only file format for persistence
  * Option to evict old items with an expiration TTL
  * Tight codebase, under 2K loc using the cloc command
  * ACID semantics with locking transactions that support rollbacks