https://github.com/ecnepsnai/ds
A key-value store with hash indexes
https://github.com/ecnepsnai/ds
go golang nosql
Last synced: about 1 year ago
JSON representation
A key-value store with hash indexes
- Host: GitHub
- URL: https://github.com/ecnepsnai/ds
- Owner: ecnepsnai
- License: mit
- Created: 2018-12-18T19:58:29.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T14:07:40.000Z (almost 2 years ago)
- Last Synced: 2025-03-30T22:11:39.949Z (about 1 year ago)
- Topics: go, golang, nosql
- Language: Go
- Size: 225 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# DS
[](https://goreportcard.com/report/github.com/ecnepsnai/ds)
[](https://pkg.go.dev/github.com/ecnepsnai/ds)
[](https://github.com/ecnepsnai/ds/releases)
[](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)