https://github.com/reddec/filedb
Simple, file based, human-readable/editable, admins friendly database in pure Golang
https://github.com/reddec/filedb
Last synced: 12 months ago
JSON representation
Simple, file based, human-readable/editable, admins friendly database in pure Golang
- Host: GitHub
- URL: https://github.com/reddec/filedb
- Owner: reddec
- License: mit
- Created: 2016-03-07T14:37:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-07T15:19:19.000Z (over 10 years ago)
- Last Synced: 2025-03-09T00:06:38.948Z (over 1 year ago)
- Language: Go
- Homepage: http://godoc.org/github.com/reddec/filedb
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File based database
See API and examples here https://godoc.org/github.com/reddec/filedb
Main features:
## 1. File based and human readable
All items are saved as single JSON (may be changed in future) file.
Tables (in terms of RDB) is just sub-folder. Names encoded by URL encoding.
So, any administrator can fix and update item just using favorite text editor.
## 2. Events and reactive design
You can manipulate with items outside application any time. Application may receive notification about any changes in sections.
## 3. Simple
Really simple structure of database engine in really simple language - Go. So pull requests are welcome