FUCKING PATCHED SURREALDB BECAUSE TOKIO GUHHHHH
Find a file
Tobie Morgan Hitchcock 529ddbbec2 Encode all numbers as float64
All numbers in encoded keys are now encoded into float64, ensuring that decimal numbers are sorted alongside integers.

The maximum number able to be stored as a float64, without losing precision, is now (1<<53 - 1) - the same maximum number possible in javascript.
2016-09-10 00:21:58 +01:00
build Fix build tags 2016-03-18 16:19:09 +00:00
cli Add runtime language cli argument option 2016-09-06 11:19:35 +01:00
cnf Add runtime language cli argument option 2016-09-06 11:19:35 +01:00
db Allow modifying whole tables with DIFFs 2016-09-07 16:58:37 +01:00
doc Update query docs 2016-09-06 14:32:39 +01:00
gui Update to ember-cli 2.7.0 2016-08-19 13:35:09 +01:00
kvs Return CKError instead of custom error when encryption fails 2016-09-06 14:32:21 +01:00
log Use abcum log package 2016-07-04 11:33:59 +01:00
sql Enable parsing tables as struct not string 2016-09-07 17:01:32 +01:00
tcp Encrypt serf communications 2016-07-18 23:02:10 +01:00
util Encode all numbers as float64 2016-09-10 00:21:58 +01:00
web Improve db error messages 2016-09-06 14:36:17 +01:00
.dockerignore Store ember app in 'app' folder 2016-07-05 00:03:48 +01:00
.editorconfig Add editorconfig file 2016-04-04 10:14:38 +01:00
.gitignore Fix gitignore 2016-07-06 00:50:04 +01:00
.go-version Add default go version 2016-02-26 16:18:58 +00:00
circle.yml Perform tests on all branches 2016-09-06 12:42:16 +01:00
Dockerfile Store ember app in 'app' folder 2016-07-05 00:03:48 +01:00
glide.lock Update 3rd party dependencies 2016-09-06 13:09:27 +01:00
glide.yaml Update 3rd party dependencies 2016-09-06 13:09:27 +01:00
LICENSE Add correct copyright notice 2016-05-11 19:07:10 +01:00
main.go Add debugging option to codebase 2016-09-06 12:52:11 +01:00
Makefile Ensure that build artefacts are cleaned before building 2016-08-25 10:50:33 +01:00
README.md Update README 2016-07-21 22:41:20 +01:00

Surreal

Surreal is a scalable, distributed, strongly-consistent, collaborative document-graph database.

Features

  • NoSQL document-graph database written in Go
  • Administrative database tools
    • Easily import data into a cluster
    • Easily export data from a cluster
    • Accessible and intuitive web interface
  • Multiple connection methods
    • Connect using REST
    • Connect using JSON-RPC
    • Connect using Websockets
  • Multiple data querying methods
    • Use advanced SQL queries
    • Query using REST url endpoints
    • Query using Websocket methods
  • Customisable authentication access
    • Specify public or private access
    • Admin access to all database data
    • Token access to all database data
    • End-user multi-tenancy authentication
  • Flexible data manipulation queries
    • Automatic creation of tables
    • Sceha-less or schema-full tables
    • Automatic data field sanitization
    • Mandatory, and readonly data fields
    • Define embedded fields, and object arrays
  • Advanced customisable indexing support
    • Single-column indexs
    • Multiple-column indexes
    • Indexing of embedded data fields
    • LUA/JS scripting for custom indexes
    • Full-text indexing of all data by default
  • Collaborative editing and manipulation of data
    • Live realtime queries
    • Publish data changes
    • Subscribe to data changes
    • Built-in concurrency control
    • Pub/sub over websocket for data updates
  • Encryption out-of-the-box as standard
    • End-to-end intra-cluster communications
    • End-user SSL encryption for http endpoints
    • Encryption of all data at rest using AES-256

Installation

go get github.com/abcum/surreal

Running

surreal start --port-web 8000

Clustering

surreal start --port-web 8000 --port-tcp 33693 --db-path boltdb://surreal-1.db --join localhost:33693 --log-level debug
surreal start --port-web 8001 --port-tcp 33694 --db-path boltdb://surreal-2.db --join localhost:33693 --log-level debug
surreal start --port-web 8002 --port-tcp 33695 --db-path boltdb://surreal-3.db --join localhost:33693 --log-level debug

Deployment

docker run --name surreal-1 abcum/surreal start --port-web 8000 --port-tcp 33693 --join localhost:33693 --log-level debug
docker run --name surreal-2 abcum/surreal start --port-web 8001 --port-tcp 33694 --join localhost:33693 --log-level debug
docker run --name surreal-3 abcum/surreal start --port-web 8002 --port-tcp 33695 --join localhost:33693 --log-level debug