Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a7medev/goredis
A basic Redis server implementation in Go.
https://github.com/a7medev/goredis
Last synced: 6 days ago
JSON representation
A basic Redis server implementation in Go.
- Host: GitHub
- URL: https://github.com/a7medev/goredis
- Owner: a7medev
- Created: 2024-07-11T07:00:20.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T18:36:09.000Z (4 months ago)
- Last Synced: 2024-09-20T06:43:35.185Z (about 2 months ago)
- Language: Go
- Size: 75.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redis in Go
A simple Redis server implementation in Go.
The implementation is divided into multiple packages, each has a directory in the root of the project with a README file that explains what the package does.
## Building
To build the project, run:
```sh
go build -o redis-server .
```## Running
To run the server you can execute the binary that was built in the previous step:
```sh
./redis-server
```You can configure the server by passing different flags, to view the available flags run:
```sh
./redis-server -h
```