A simple TCP-based cache server written in Go.
- Go 1.25.0 or higher
# Clone the repository
git clone <repository-url>
cd cache_golang
# Build and run
make build
make runThe server will start on port :3000.
.
├── main.go # Application entry point
├── server.go # TCP server implementation
├── command.go # Command parsing logic
├── go.mod # Go module definition
├── Makefile # Build automation
├── bin/
│ └── ggcache # Compiled binary
└── cache/
├── cache.go # Cache implementation
└── cacher.go # Cache interface