aboutsummaryrefslogtreecommitdiff
path: root/db.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix freelist allocation direction.Ben Johnson2014-05-191-1/+16
* Change verbiage, fix node test.Ben Johnson2014-05-151-2/+2
* Add option to adjust fill percentage.Ben Johnson2014-05-151-1/+15
* Add strict mode.Ben Johnson2014-05-141-63/+17
* add asserts for detecting pgid high watermark overflowMartin Kobetic2014-05-091-0/+4
* Add inline bucket support.Ben Johnson2014-05-051-1/+5
* Consolidate code for clarity.Ben Johnson2014-05-051-0/+88
* wipSteven Normore2014-04-161-2/+7
* build c/cursor and running testsSteven Normore2014-04-161-0/+6
* Add nested buckets.Ben Johnson2014-04-111-46/+61
* Rename internal local Tx variables.Ben Johnson2014-04-041-4/+4
* Add meta page checksums.Ben Johnson2014-04-021-1/+1
* Add performance counters.Ben Johnson2014-04-021-44/+23
* Add advisory file locking.Ben Johnson2014-04-021-0/+12
* Consolidate file and metafile descriptors.Ben Johnson2014-04-021-17/+6
* Remove DB.Open() and only allow bolt.Open().Ben Johnson2014-03-311-25/+15
* Write freelist after each commit.Ben Johnson2014-03-311-2/+10
* Add DB.Check().Ben Johnson2014-03-291-0/+57
* Fix DB.Copy() meta lock and partial write checks.Ben Johnson2014-03-261-1/+12
* Make DB/Tx API more consistent.Ben Johnson2014-03-241-18/+26
* Error refactoring.Ben Johnson2014-03-241-7/+18
* Re-add tests for write failuresTommi Virtanen2014-03-241-1/+14
* Resolve remaining errcheck warnings.Ben Johnson2014-03-241-10/+23
* Check errors from file close in DB.CopyFileTommi Virtanen2014-03-231-1/+5
* Mark Do()/With() transaction as managed.Ben Johnson2014-03-231-4/+19
* Fix db.munmap() to return an error.Ben Johnson2014-03-211-26/+36
* Remove ease-of-use functions from the DB type.Ben Johnson2014-03-211-129/+0
* Consolidate Tx and RWTx.Ben Johnson2014-03-081-24/+22
* Rename Transaction to Tx.Ben Johnson2014-03-081-57/+57
* Ignore multiple transaction commit/rollback/close.Ben Johnson2014-03-011-1/+1
* Allow reads of unflushed nodes.Ben Johnson2014-03-011-2/+3
* Fix the mmap resize to use the correct size.Ben Johnson2014-02-271-1/+1
* Refactor Bucket.Ben Johnson2014-02-231-5/+40
* Revert "Refactor Transaction/Bucket API."Ben Johnson2014-02-221-74/+40
* Refactor Transaction/Bucket API.Ben Johnson2014-02-211-40/+74
* Add DB.Stat().Ben Johnson2014-02-211-0/+51
* Read-only transactional block.Ben Johnson2014-02-161-4/+14
* Add Transaction.ForEach().Ben Johnson2014-02-161-0/+11
* Add CreateBucketIfNotExists().Ben Johnson2014-02-161-0/+8
* Rename errors.Ben Johnson2014-02-161-4/+4
* Add Stringer support.Ben Johnson2014-02-161-0/+11
* Improve test coverage.Ben Johnson2014-02-151-16/+1
* Fix DB.opened flag.Ben Johnson2014-02-151-0/+2
* Add parallel usage test and race detector.Ben Johnson2014-02-151-5/+1
* Add transactional blocks.Ben Johnson2014-02-151-50/+38
* Add bucket sequence.Ben Johnson2014-02-151-0/+19
* Add examples.Ben Johnson2014-02-141-7/+2
* API Documentation.Ben Johnson2014-02-131-16/+31
* Mmap remap.Ben Johnson2014-02-121-11/+79
* Add freelist.Ben Johnson2014-02-101-14/+77