💿 In-memory key value store that saves your data to disk using JSON. 8 Commits
2023-07-06 14:10:12 +02:00
.editorconfig Added explanation 2023-07-05 22:02:16 +02:00
.gitignore Added explanation 2023-07-05 22:02:16 +02:00
Collection_test.go Improved file persistence 2023-07-06 14:10:12 +02:00
Collection.go Improved file persistence 2023-07-06 14:10:12 +02:00
go.mod Added basic tests 2023-07-05 17:23:50 +02:00
go.sum Added basic tests 2023-07-05 17:23:50 +02:00
LICENSE Added basic information 2023-07-05 00:20:26 +02:00
Namespace_test.go Added basic tests 2023-07-05 17:23:50 +02:00
Namespace.go Added basic tests 2023-07-05 17:23:50 +02:00
README.md Improved file persistence 2023-07-06 14:10:12 +02:00

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"})