From 95c5eb96cf65019131a97e93031d4cdf38eca3c2 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Mon, 11 May 2015 10:00:29 +0200 Subject: Initial --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..110d25b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# LinearDB + +A simple database program that maintains a linear philosophy: when you can't run stuff in parallel, _don't_ run stuff in parallel. You can send queries in a simple scripting language, and the multiplexer will send them to the database engine _one at a time_, to be evaluated with the utmost care by the engine. Feature: no two queries will run at the same time, and **transactions are not a feature, but a something commonplace and inherent to the protocol**. Everything is a transaction, so don't worry about other programs messing with the database while it's _your turn_. -- cgit v1.2.3-54-g00ecf