💿 In-memory key value store that saves your data to disk using JSON.
8 Commits
.editorconfig | ||
.gitignore | ||
Collection_test.go | ||
Collection.go | ||
go.mod | ||
go.sum | ||
LICENSE | ||
Namespace_test.go | ||
Namespace.go | ||
README.md |
ocean
In-memory key value store that saves your data to plain old JSON files.
If you like, you can operate on your entire data with classic UNIX tools.
users := ocean.NewCollection("namespace", "User")
users.Set("1", &User{Name: "User 1"})