Skip to content

krstak/memorydb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

In-Memory Database

A small in-memory database. It is useful for testing and test environment. Should not be used in production.

Install

go get github.com/krstak/memorydb/v3

API

// Add adds a new item into the given collection.
// Returns an error if occurs.
Add(collection string, item interface{}) error

// Add updates an existing item into the given collection.
// Returns an error if occurs.
Update(collection string, item interface{}, fields []Fileds) error

// FindAll finds all items in the collection and maps them into the items.
// Returns an error if occurs.
FindAll(collection string, items interface{}) error

// FindBy finds all items in the collection by given field and value and maps them into the items.
// Returns an error if occurs.
FindBy(collection string, field string, value interface{}, items interface{}) error

// Remove removes an item with a given field and value.
// Returns an error if occurs.
Remove(collection string, field string, value interface{}) error

Usage

Entity to persist

Any struct is a valid object to be persisted.

type book struct {
	ID     uuid.UUID
	Isbn   int
	Name   string
	Author string
}

Create database

db := memorydb.New()

Write to database

bk := book{ID: uuid.New(), Isbn: 123456, Name: "In-Memory DB", Author: "Marko Krstic"}
err := db.Add("books", bk)

Update

bk := book{...}
err := db.Update("books", bk, []Fileds{{Key: "ID", Value: 123456}})

Find all

var books []book
err := db.FindAll("books", &books)

Find by

var books []book
err := db.FindBy("books", "Isbn", 123456, &books)

Remove

err := db.Remove("books", "Isbn", 123456)

About

In-Memory Database

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages