# README
raft-sqlite3
This repository provides the raftsqlite3
package. The package exports the
Sqlite3Store
which is an implementation of both a LogStore
and StableStore
.
It is meant to be used as a backend for the raft
package
here.
This implementation uses SQLite3. SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine.
# Functions
New uses the supplied dataSourceName to open the sqlite3 and prepare it for use as a raft backend.
No description provided by the author
# Variables
An error indicating a given key does not exist.
# Structs
Sqlite3Store provides access to sqlite3 for Raft to store and retrieve log entries.