Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ecnepsnai/ds

A key-value store with hash indexes
https://github.com/ecnepsnai/ds

go golang nosql

Last synced: about 1 month ago
JSON representation

A key-value store with hash indexes

Awesome Lists containing this project

README

        

# DS

[![Go Report Card](https://goreportcard.com/badge/github.com/ecnepsnai/ds?style=flat-square)](https://goreportcard.com/report/github.com/ecnepsnai/ds)
[![Godoc](https://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://pkg.go.dev/github.com/ecnepsnai/ds)
[![Releases](https://img.shields.io/github/release/ecnepsnai/ds/all.svg?style=flat-square)](https://github.com/ecnepsnai/ds/releases)
[![LICENSE](https://img.shields.io/github/license/ecnepsnai/ds.svg?style=flat-square)](https://github.com/ecnepsnai/ds/blob/master/LICENSE)

Package ds (short for "data store") is a key-value store with hash indexes. It allows for rudimentary but lightning fast
retrieval of grouped or relevant data without having to iterate over all objects in the store.

Define the primary key, indexed keys, and unique keys as tags on struct fields, and DS takes care of the rest.

# Usage & Examples

Examples can be found on the [documentation for the library](https://pkg.go.dev/github.com/ecnepsnai/ds)