package
0.0.0-20220216034907-f4fb504b8275
Repository: https://github.com/jasonkayzk/consistent-hashing-demo.git
Documentation: pkg.go.dev

# README

Server

A simple Server to handle k-v cache for testing.

How to use

Before start the server, you need to start the proxy server first:

$ go run main.go

This will start a proxy server on port 18888.

Then you can start the server:

$ go run server/main.go

This will start a server on port 8080 in default.

You can also specify the port:

$ go run server/main.go -p 8081

The server will listen on port 8081.