Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 965 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 965 Bytes

gkvstore Go Go Reference Coverage Status

Generic key-value store

gkvstore is a generic KV Store interface which provides an easier interface to access underlying database. It is mainly used to abstract the database used underneath so we can have a uniform API to use for clients

Different DB adapters can be built for the Store. This allows decoupling DB code from specific implementations and ability to change DBs on the fly.

Install

gkvstore works like a regular Go module:

> go get github.com/plexsysio/gkvstore

Usage

import "github.com/plexsysio/gkvstore"