Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhyanio/discache
Simple, Fast, and Distributed Cache Server in Go
https://github.com/dhyanio/discache
binary cache discache distributed-systems golang grpc raft transport
Last synced: about 2 months ago
JSON representation
Simple, Fast, and Distributed Cache Server in Go
- Host: GitHub
- URL: https://github.com/dhyanio/discache
- Owner: dhyanio
- License: mit
- Created: 2024-10-21T05:13:39.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-10T11:30:18.000Z (about 2 months ago)
- Last Synced: 2024-11-10T12:25:09.551Z (about 2 months ago)
- Topics: binary, cache, discache, distributed-systems, golang, grpc, raft, transport
- Language: Go
- Homepage:
- Size: 14.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Discache : Distributed LRU Cache
Discache, is a powerfull, but simple LRU cache in golang. Using TCP and binary as a transporter which makes it very performant.
## CLI
A CLI tool has commands### Requirements
- Go (version 1.17 or later)### Makefile Targets
#### Variables
- `LISTEN_ADDR` - Address for the server to listen on (default: `:4000`).
- `LEADER_ADDR` - Address of the leader node (default: `:3000`).These can be passed as arguments when running specific commands.
### Usage
- Build the Project```bash
make build
```
Builds the Go binary and places it in the bin/ directory.- Run the Project
```bash
make run
```
Runs the binary after building it.- Run the Tests
```bash
make test
```
Runs all tests with verbose output.- Lint the Project
```bash
make lint
```
Runs golangci-lint on the codebase. Ensure golangci-lint is installed.- Format the Code
```bash
make fmt
```
Formats the code using go fmt.- Clean the Build Files
```bash
make clean
```
Removes the bin/ directory and all generated files.### Example Usage
To start a leader
```bash
make run LISTEN_ADDR=:3000
```To start a follower node with a custom `LISTEN_ADDR` and `LEADER_ADDR`
```bash
make leader LISTEN_ADDR=:3001 LEADER_ADDR=:3000
```## Client
A Go client for connecting to an LRU cache server over TCP. This client allows users to perform Get and Put operations on the cache, handling network communication and TTL (time-to-live) for cache entries.### Features
- Get: Retrieve a value by its key.
- Put: Store a value with a specified TTL.
- Connection Management: Establishes and closes TCP connections.
- Error Handling: Returns detailed error messages for failed operations.### Setup and Installation
- Prerequisites: Make sure you have Go installed.
- Clone the repository and navigate to the project directory.
- Build the Client:```bash
go build -o lru_client client.go
```
### Usage
#### Initialize the Client
To create a new client instance, use New with the server endpoint and optional configurations:```go
import "github.com/dhyanio/discache/client"func main() {
endpoint := "localhost:8080"
opts := client.Options{}
cacheClient, err := client.New(endpoint, opts)
if err != nil {
log.Fatalf("Failed to connect to cache server: %v", err)
}
defer cacheClient.Close()
}```
#### Using Get and Put Methods
`Put` a key-value pair into the cache with a specified TTL (in seconds):```go
key := []byte("exampleKey")
value := []byte("exampleValue")
ttl := 60 // TTL in secondserr := cacheClient.Put(context.Background(), key, value, ttl)
if err != nil {
log.Printf("Failed to put key: %v", err)
}
````Get` a value by key:
```go
value, err := cacheClient.Get(context.Background(), key)
if err != nil {
log.Printf("Failed to get key: %v", err)
} else {
log.Printf("Value: %s", string(value))
}
```
#### Close the Client
Always close the connection when you're done:```go
defer cacheClient.Close()
```### Error Handling
Errors returned by `Get` and `Put` methods include:- `Key Not Found`: if the key doesn’t exist.
- `Connection Errors`: issues in TCP communication with the server.
- `Non-OK Status`: unexpected server responses.### Dependencies
This project requires a transport package to handle command structure and response parsing.### License
MIT License## TODO
- RAFT consensus
- gRPC
- Documentations and Improve code
- Use more context