diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-12-21 08:52:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-21 08:52:53 -0700 |
commit | 7614a4738bf1ca79cda778407fe5ae89a4f465f6 (patch) | |
tree | bcd0fc5d293ecbcf2e03a539b86c140cde75ef5b | |
parent | Merge pull request #618 from tbe/master (diff) | |
parent | README (diff) | |
download | dedo-7614a4738bf1ca79cda778407fe5ae89a4f465f6.tar.gz dedo-7614a4738bf1ca79cda778407fe5ae89a4f465f6.tar.xz |
Merge pull request #638 from boltdb/fix-634
Document multi-process limitation in README
-rw-r--r-- | README.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -768,6 +768,9 @@ Here are a few things to note when evaluating and using Bolt: can be reused by a new page or can be unmapped from virtual memory and you'll see an `unexpected fault address` panic when accessing it. +* Bolt uses an exclusive write lock on the database file so it cannot be + shared by multiple processes. + * Be careful when using `Bucket.FillPercent`. Setting a high fill percent for buckets that have random inserts will cause your database to have very poor page utilization. |