package
0.0.0-20211010210625-4aa0140a90eb
Repository: https://github.com/0xqab/concepts-of-programming-languages.git
Documentation: pkg.go.dev

# README

DKVS

A Distributed Key Value Store

KV-Store is a simple, non-persistent distributed Key Value Store with a REST- and GRPC API.

// Copyright 2018 Johannes Weigend
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

The consistency of data is guaranteed by using the RAFT Algorithm:

http://thesecretlivesofdata.com/raft/ https://raft.github.io/

# Packages

No description provided by the author
No description provided by the author

# Interfaces

KVStore is the business interface to a distributed key value store.