https://github.com/cheeksthegeek/dbs
a collection of database management systems in a lot of different schemes in a lot of different languages
https://github.com/cheeksthegeek/dbs
Last synced: 8 months ago
JSON representation
a collection of database management systems in a lot of different schemes in a lot of different languages
- Host: GitHub
- URL: https://github.com/cheeksthegeek/dbs
- Owner: CheeksTheGeek
- Created: 2024-09-03T19:29:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-08T01:49:59.000Z (about 1 year ago)
- Last Synced: 2024-09-13T10:12:57.448Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Databases Handcrafted By CheeksTheGeek
This is just a collection of DBMS's in a lot of different schemes in a lot of different languages.
Writing databases (I'll refer DBMS simply as DBs a lot in this repo) in different languages helps me build a big picture of how databases' internals work. I'm not a database expert, but I'm learning.
One might find some of the databases to be very simple, or some to be very targeted at different themes of database designs.
Along the way
## Languages I'm Targeting
- [~] C
- [ ] Python
- [ ] Fortran
- [ ] Rust
- [ ] Go
- [ ] C++
##### Maybe Some Day If I'm Really Bored:
- [ ] Java
- [ ] JavaScript
- [ ] Ruby
- [ ] Swift
- [ ] Kotlin
## DB Flavours
- [ ] SQL (Full, like MySQL or Postgres (I should be afraid of this kind of big talk))
- [ ] SQL (Partial, like SQLite)
- [ ] NoSQL (Document, like MongoDB)
- [ ] In-Memory NoSQL (Key-Value, like Redis)
##### If I Feel Adventurous:
- [ ] NoSQL (Column, like Cassandra)
- [ ] Graph (Also NoSQL, but it's better to call it a Graph DB, like Neo4j)
- [ ] Time Series (Like InfluxDB)
- [ ] Search (Like ElasticSearch)
- [ ] NewSQL (Like CockroachDB)
- [ ] Multi-Model (Like ArangoDB)
> ![Context] #### DB Schemes
> - [ ] Key-Value
> - [ ] Document
> - [ ] Column
> - [ ] Graph
> - [ ] Time Series
> - [ ] Search
> - [ ] Multi-Model
## Resources Used
- cstack's DB Tutorial: https://cstack.github.io/db_tutorial/
- SQLite's Documentation: https://www.sqlite.org/docs.html
- Redis' Documentation: https://redis.io/documentation
- Jeff Zarnett's Course Notes From ECE 356: https://github.com/jzarnett/ece356/tree/master/lectures/compiled/notebook.pdf
-