https://github.com/codemaster17/swiftdb-my-own-redis
SwiftDB is a in-memory key-value store that is inspired by Redis. It is written in Go and is designed to be a learning project for me to understand how Redis works under the hood. It uses the same commands and PORT as Redis, so you can use the same Redis clients to interact with SwiftDB.
https://github.com/codemaster17/swiftdb-my-own-redis
go redis redis-client redis-server
Last synced: 2 months ago
JSON representation
SwiftDB is a in-memory key-value store that is inspired by Redis. It is written in Go and is designed to be a learning project for me to understand how Redis works under the hood. It uses the same commands and PORT as Redis, so you can use the same Redis clients to interact with SwiftDB.
- Host: GitHub
- URL: https://github.com/codemaster17/swiftdb-my-own-redis
- Owner: CodeMaster17
- Created: 2024-11-07T07:50:22.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-12T19:30:35.000Z (7 months ago)
- Last Synced: 2025-03-28T11:39:05.986Z (3 months ago)
- Topics: go, redis, redis-client, redis-server
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SwiftDB - My own Redis
SwiftDB is a in-memory key-value store that is inspired by Redis. It is written in `Go` and is designed to be a learning project for me to understand how Redis works under the hood. It uses the same commands and PORT as Redis, so you can use the same Redis clients to interact with SwiftDB.## What is Redis?
Redis (REmote DIctionary Server) is a popular, open-source, in-memory database that stores data as key-value pairs.
## What is SwiftDB?
SwiftDB is a in-memory key-value store that is inspired by Redis. It is written in Go and is designed to be a learning project for me to understand how Redis works under the hood.
It uses the same commands and PORT as Redis, so you can use the same Redis clients to interact with SwiftDB.
## Working sample
(Will be uploading video soon)## REDIS Architecture
![]()