https://github.com/avraammavridis/worlds-smallest-db
World's smallest and simplest database
https://github.com/avraammavridis/worlds-smallest-db
bash database key-value simpest-database
Last synced: 6 months ago
JSON representation
World's smallest and simplest database
- Host: GitHub
- URL: https://github.com/avraammavridis/worlds-smallest-db
- Owner: AvraamMavridis
- Created: 2017-12-18T06:08:05.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-18T06:20:25.000Z (almost 8 years ago)
- Last Synced: 2025-03-30T06:02:11.430Z (6 months ago)
- Topics: bash, database, key-value, simpest-database
- Language: Shell
- Size: 1000 Bytes
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# worlds-smallest-db
World's smallest and simplest databaseSimplest key-value store implemented in bash.
```bash
db_set name Jon
db_set surname Smith
db_get name # Jondb_set author { name: 'Alex', surname: 'Johnson' }
db_get author # { name: 'Alex', surname: 'Johnson' }
```