| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add performance counters. | Ben Johnson | 2014-04-02 | 1 | -0/+4 |
| | | | | | | | | | | | | | This commit adds performance counters for each transaction which are rolled up to the database level on each commit/rollback. Counters are meant to be a very fast way to track what is going on in the database. A few timers are also added in areas where the time.Now() overhead is not noticible. The DB.Stat() function is now deprecated since the `bolt` CLI now performs similar functions. Fixes #108. | ||||
| * | Error refactoring. | Ben Johnson | 2014-03-24 | 1 | -0/+34 |
| | | | | | Fixed up a few error issues and refactored out the Error type. | ||||
| * | Add ErrTxClosed error. | Ben Johnson | 2014-03-23 | 1 | -3/+12 |
| | | | | | | | | | Commit/Rollback and mutable calls on Tx and Bucket now return ErrTxClosed if the transaction has already been committed or rolled back. Non-mutable calls have added an assertion to check if the transaction is closed which will cause a panic. I don't want to introduce an error return for accessor methods that are being used improperly so I think the panic is appropriate. | ||||
| * | fix 32bit build fails: bucket.go#67 | binz | 2014-03-23 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #65 from benbjohnson/fix-tx-buckets-sort-order | Ben Johnson | 2014-03-21 | 1 | -0/+6 |
| |\ | | | | | Fix Tx.Buckets() sort order. | ||||
| | * | Fix Tx.Buckets() sort order. | Ben Johnson | 2014-03-13 | 1 | -0/+6 |
| | | | | | | | | | | | @tv42 reported an issue with bucket names returning incorrectly. Not sure if this fixes the issue but it is necessary anyway. | ||||
| * | | Fix Bucket.ForEach() comment. | Ben Johnson | 2014-03-15 | 1 | -1/+2 |
| |/ | |||||
| * | Consolidate Tx and RWTx. | Ben Johnson | 2014-03-08 | 1 | -4/+3 |
| | | |||||
| * | Rename Transaction to Tx. | Ben Johnson | 2014-03-08 | 1 | -11/+11 |
| | | | | | | I changed the Transaction/RWTransaction types to Tx/RWTx, respectively. This makes the naming more consistent with other packages such as database/sql. The txnid is changed to txid as well. | ||||
| * | Allow reads of unflushed nodes. | Ben Johnson | 2014-03-01 | 1 | -1/+1 |
| | | | | | | This commit allows cursors to read updated values from within the RWTransaction. | ||||
| * | Refactor Bucket. | Ben Johnson | 2014-02-23 | 1 | -7/+104 |
| | | |||||
| * | Revert "Refactor Transaction/Bucket API." | Ben Johnson | 2014-02-22 | 1 | -100/+5 |
| | | | | | This reverts commit 1ad2b99f281d587b767b36f886401e81d17915a9. | ||||
| * | Refactor Transaction/Bucket API. | Ben Johnson | 2014-02-21 | 1 | -5/+100 |
| | | |||||
| * | Bucket stats. | Ben Johnson | 2014-02-21 | 1 | -0/+29 |
| | | |||||
| * | Add parallel usage test and race detector. | Ben Johnson | 2014-02-15 | 1 | -1/+1 |
| | | |||||
| * | Add bucket sequence. | Ben Johnson | 2014-02-15 | 1 | -0/+1 |
| | | |||||
| * | API Documentation. | Ben Johnson | 2014-02-13 | 1 | -0/+5 |
| | | |||||
| * | Add freelist. | Ben Johnson | 2014-02-10 | 1 | -14/+0 |
| | | |||||
| * | Clean up. | Ben Johnson | 2014-02-09 | 1 | -0/+14 |
| | | |||||
| * | Refactor node lookup. | Ben Johnson | 2014-02-07 | 1 | -1/+1 |
| | | |||||
| * | Add RWTransaction.Put(). | Ben Johnson | 2014-02-01 | 1 | -7/+2 |
| | | |||||
| * | Clean up API. | Ben Johnson | 2014-01-31 | 1 | -2/+0 |
| | | |||||
| * | Add RWTransaction.write(). | Ben Johnson | 2014-01-30 | 1 | -0/+2 |
| | | |||||
| * | gofmt | Ben Johnson | 2014-01-30 | 1 | -3/+3 |
| | | |||||
| * | Fix leaf/branch deserialization. | Ben Johnson | 2014-01-30 | 1 | -10/+8 |
| | | |||||
| * | Add freelist page type. | Ben Johnson | 2014-01-29 | 1 | -8/+0 |
| | | |||||
| * | Intermediate. | Ben Johnson | 2014-01-27 | 1 | -20/+23 |
| | | |||||
| * | Initialize transaction/rwtransaction. | Ben Johnson | 2014-01-26 | 1 | -0/+20 |
| | | |||||
| * | TODO | Ben Johnson | 2014-01-24 | 1 | -22/+8 |
| | | |||||
| * | Intermediate commit. | Ben Johnson | 2014-01-21 | 1 | -1/+0 |
| | | |||||
| * | Refactoring to RWCursor, RWTxn, and branch/leaf nodes and pages. | Ben Johnson | 2014-01-17 | 1 | -0/+1 |
| | | |||||
| * | Add system buckets. | Ben Johnson | 2014-01-14 | 1 | -1/+10 |
| | | |||||
| * | Begin Transaction.Cursor(). | Ben Johnson | 2014-01-13 | 1 | -0/+4 |
| | | |||||
| * | Initial db.open. | Ben Johnson | 2014-01-11 | 1 | -8/+8 |
| | | |||||
| * | DB.Open(), pages, and meta. | Ben Johnson | 2014-01-10 | 1 | -12/+9 |
| | | |||||
| * | Basic types. | Ben Johnson | 2014-01-08 | 1 | -0/+21 |
