aboutsummaryrefslogtreecommitdiff
path: root/batch_test.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* test suite refactoringBen Johnson2016-01-021-167/+0
| | | | | | | | | This commit refactors the test suite to make it cleaner and to use the standard testing library better. The `assert()`, `equals()`, and `ok()` functions have been removed and some test names have been changed for clarity. No functionality has been changed.
* Add transaction batchingTommi Virtanen2015-02-181-0/+167
DB.Batch makes it easy to make lots of small transactions with significantly better performance. Batch combines multiple concurrent Update calls into a single disk transaction, managing errors smartly.