Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 187 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 187 Bytes

MutileReplica KV implentations

type ReplicaKv interface {
	Set(key, value string, duration time.Duration) (error)
	Get(key string) (string, error)
	Remove(key string) error
}