1
0
Fork 0

Merge pull request #323 from rqlite/more_doc_g

More GoDoc
master
Philip O'Toole 7 years ago committed by GitHub
commit a11bbd2243

@ -1,3 +1,4 @@
// Command rqlite is the command-line interface for rqlite.
package main
import (

@ -1,12 +1,11 @@
/*
rqlite -- replicating SQLite via the Raft consensus protocol..
Command rqlited is the rqlite server.
rqlite is a distributed system that provides a replicated relational database,
using SQLite as the storage engine.
rqlite is written in Go and uses Raft to achieve consensus across all the
instances of the SQLite databases. rqlite ensures that every change made to
the database is made to a majority of underlying SQLite files, or none-at-all.
rqlite is a lightweight, distributed system that provides a replicated
relational database, using SQLite as the storage engine. rqlite is written
in Go and uses Raft to achieve consensus across all the instances of the
SQLite databases. rqlite ensures that every change made to the database is
made to a majority of underlying SQLite files, or none-at-all.
*/
package main

Loading…
Cancel
Save