Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make: Use $< over $? | EuAndreh | 2025-05-04 | 1 | -1/+1 |
| | |||||
* | Rename "gkv" -> "dedo" | EuAndreh | 2024-10-30 | 1 | -1/+1 |
| | |||||
* | Makefile: Simplify time file generation on bench taget dependencies | EuAndreh | 2024-10-29 | 1 | -2/+1 |
| | |||||
* | Makefile: Prioritize local version when building and linking | EuAndreh | 2024-10-29 | 1 | -2/+2 |
| | |||||
* | Normalize structure following other projects | EuAndreh | 2024-10-26 | 1 | -13/+165 |
| | |||||
* | test suite refactoring | Ben Johnson | 2016-01-02 | 1 | -43/+7 |
| | | | | | | | | | 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. | ||||
* | Remove errcheck. | Ben Johnson | 2014-06-12 | 1 | -1/+1 |
| | |||||
* | Remove allocations from read-only buckets. | Ben Johnson | 2014-05-23 | 1 | -0/+2 |
| | |||||
* | Fix freelist allocation direction. | Ben Johnson | 2014-05-19 | 1 | -1/+1 |
| | | | | | | This commit fixes the freelist so that it frees from the beginning of the data file instead of the end. It also adds a fast path for pages which can be allocated from the first free pages and it includes read transaction stats. | ||||
* | Add 'bolt bench'. | Ben Johnson | 2014-04-18 | 1 | -3/+2 |
| | | | | | | | | | | | | | | This commit adds a flexible benchmarking tool to the 'bolt' CLI. It allows the user to separately specify the write mode and read mode (e.g. sequential random, etc). It also allows the user to isolate profiling to either the read or the writes. Currently the bench tool only supports "seq" read and write modes. It also does not support streaming of Bolt counters yet. Fixes #95. /cc @snormore | ||||
* | add bench sub-package | Steven Normore | 2014-04-18 | 1 | -2/+2 |
| | |||||
* | moar bench package | Steven Normore | 2014-04-18 | 1 | -1/+2 |
| | |||||
* | Fix race detector CI. | Ben Johnson | 2014-04-11 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' into nested-keys | Ben Johnson | 2014-04-11 | 1 | -0/+15 |
|\ | | | | | | | | | | | Conflicts: db_test.go tx_test.go | ||||
| * | Add import/export to CLI. | Ben Johnson | 2014-04-11 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | This commit adds two new commands: bolt import --input INPUT PATH bolt export PATH This exports the database in a simple, nested, key/value JSON document. Each node in the document has a "key", a "value", and an optional "type". The key and value fields are both base64 encoded. | ||||
| * | add ldflags on build with main.commit and main.branch to Makefile | Steven Normore | 2014-04-09 | 1 | -1/+4 |
| | | |||||
| * | add get/build targets to Makefile | Steven Normore | 2014-04-08 | 1 | -0/+8 |
| | | |||||
* | | Add nested buckets. | Ben Johnson | 2014-04-11 | 1 | -2/+2 |
|/ | | | | | | | This commit adds the ability to create buckets inside of other buckets. It also replaces the buckets page with a root bucket. Fixes #56. | ||||
* | Resolve remaining errcheck warnings. | Ben Johnson | 2014-03-24 | 1 | -1/+6 |
| | |||||
* | Add benchmarks. | Ben Johnson | 2014-03-04 | 1 | -1/+5 |
| | |||||
* | Add 'make cloc'. | Ben Johnson | 2014-02-20 | 1 | -1/+5 |
| | |||||
* | Add Stringer support. | Ben Johnson | 2014-02-16 | 1 | -1/+1 |
| | |||||
* | Add parallel usage test and race detector. | Ben Johnson | 2014-02-15 | 1 | -0/+5 |
| | |||||
* | Add freelist. | Ben Johnson | 2014-02-10 | 1 | -3/+2 |
| | |||||
* | Initial db.open. | Ben Johnson | 2014-01-11 | 1 | -0/+20 |