From a0b38686b14c10593632a5c681b80746e45afd57 Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Tue, 19 Jul 2016 16:50:21 -0700 Subject: [PATCH] updated readme --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index e2ee53f..04ab2b1 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Features - Flexible [iteration](#iterating) of data; ascending, descending, and ranges - Durable append-only file format. Adopts the [Redis AOF](http://redis.io/topics/persistence) process - Option to evict old items with an [expiration](#data-expiration) TTL -- Tight codebase, under 1K loc using the `cloc` command. +- Tight codebase, under 1K loc using the `cloc` command - ACID semantics with locking [transactions](#transactions) that support rollbacks Getting Started @@ -79,8 +79,6 @@ func main() { } ``` -It's important to note that BuntDB does not currently support file locking, so avoid accessing the database from multiple processes. - ## Transactions All reads and writes must be performed from inside a transaction. BuntDB can have one write transaction opened at a time, but can have many concurrent read transactions. Each transaction maintains a stable view of the database. In other words, once a transaction has begun, the data for that transaction cannot be changed by other transactions.