Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

0.2.2

Compare
Choose a tag to compare
@tidwall tidwall released this 19 Oct 21:36
· 26 commits to master since this release

SummitDB

SummitDB is an in-memory, NoSQL key/value database. It persists to disk, uses the Raft consensus algorithm, is ACID compliant, and built on a transactional and strongly-consistent model. It supports custom indexes, geospatial data, JSON documents, and user-defined JS scripting.

You can find detailed documentation at github.com/tidwall/summitdb.

Change Log

[0.2.2] - 2016-10-17

Added

  • Added BACKUP command
  • Added RAFTPEERS command
  • Added FENCE command

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/tidwall/summitdb/releases/download/0.2.2/summitdb-0.2.2-darwin-amd64.zip -o summitdb-0.2.2-darwin-amd64.zip
unzip summitdb-0.2.2-darwin-amd64.zip
cd summitdb-0.2.2-darwin-amd64
./summitdb-server

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/tidwall/summitdb/releases/download/0.2.2/summitdb-0.2.2-linux-amd64.tar.gz -o summitdb-0.2.2-linux-amd64.tar.gz
tar xzvf summitdb-0.2.2-linux-amd64.tar.gz
cd summitdb-0.2.2-linux-amd64
./summitdb-server

FreeBSD

To get started on FreeBSD run the following in a terminal:

curl -L  https://github.com/tidwall/summitdb/releases/download/0.2.2/summitdb-0.2.2-freebsd-amd64.tar.gz -o summitdb-0.2.2-freebsd-amd64.tar.gz
tar xzvf summitdb-0.2.2-freebsd-amd64.tar.gz
cd summitdb-0.2.2-freebsd-amd64
./summitdb-server