aboutsummaryrefslogtreecommitdiff
path: root/batch.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add batch size and delay docs•••This commit adds documentation for batch size and delay to the DB.Batch() call. Previously there was no reference to these properties from the Batch() call so it was nearly impossible for anyone to know to adjust these settings. Thanks to Kelly Sommers for bringing the doc issue to my attention. Ben Johnson2015-06-101-0/+3
* Add transaction batching•••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. Tommi Virtanen2015-02-181-0/+135