From da5b6cb453c87e1dc7483d2a4b556b454694a8dd Mon Sep 17 00:00:00 2001
From: Manish R Jain <manishrjain@gmail.com>
Date: Wed, 25 Nov 2015 19:20:51 +1100
Subject: [PATCH] No BoltDB for me!

---
 store/README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/store/README.md b/store/README.md
index 0f318eba..713ad29f 100644
--- a/store/README.md
+++ b/store/README.md
@@ -84,3 +84,7 @@ many writes get commited by the end user.
 Hence, BoltDB is a better choice. It performs better for reads/seeks, despite DGraph needing
 a value copy. Writes are somewhat slower, but that shouldn't be a problem because of the
 above mentioned reasons.
+
+**Update**: Just realized that BoltDB only allows a SINGLE writer at any point in time.
+This is equivalent to a global mutex lock. That'd essentially kill DGraph's performance. So,
+BoltDB is out!
-- 
GitLab