| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Explain iterating over sub-buckets in README | Mark Rushakoff | 2015-11-22 | 1 | -4/+9 | |
| | | ||||||
| * | update WriteTo() docs | Ben Johnson | 2015-11-06 | 1 | -2/+5 | |
| | | | | | | This commit updates and revises some of the documentation around Tx.WriteTo() and how O_DIRECT is no longer the default. | |||||
| * | updated README.md to fix typo | Charlie Cochrane | 2015-11-03 | 1 | -2/+2 | |
| | | ||||||
| * | typo and highlight | Hung Nguyen Viet | 2015-10-28 | 1 | -3/+3 | |
| | | ||||||
| * | README: add 'Reading the Source' section | Ben Johnson | 2015-10-24 | 1 | -0/+50 | |
| | | | | | | This commit adds a section to help people understand the source better while reading it. | |||||
| * | README: mention the memory map consumes a lot of address space | Patrick Mezard | 2015-10-20 | 1 | -1/+3 | |
| | | | | | | | | | | | | I have been bitten by this when running a simple application on a Raspberry Pi 2. It had 3 stores: two 512M stores and one 128M. The application refused to start the moment the first index grew from 512M to 1G. Bolt is really nice but it is easy to overlook this limitation, especially with the note about supporting stores much larger than *physical* memory. | |||||
| * | Add example of NextSequence() usage to readme | Rogier Lommers | 2015-10-18 | 1 | -0/+44 | |
| | | ||||||
| * | typos | John ShaggyTwoDope Jenkins | 2015-10-13 | 1 | -2/+2 | |
| | | ||||||
| * | add stow and buckets to projects list | Jason Voigt | 2015-09-21 | 1 | -0/+4 | |
| | | ||||||
| * | Better URL for Bazil in README | Tommi Virtanen | 2015-07-29 | 1 | -1/+1 | |
| | | ||||||
| * | README: add drive to projects using bolt | Emmanuel Odeke | 2015-07-14 | 1 | -0/+1 | |
| | | ||||||
| * | Added Kala to Projects Using Bolt section | AJ Bahnken | 2015-06-10 | 1 | -0/+1 | |
| | | ||||||
| * | Add docs for dependent transactions. | Ben Johnson | 2015-05-21 | 1 | -0/+5 | |
| | | | | | | | | | This commit adds documentation to clarify that read-only and read-write transactions should not be mixed in the same goroutine as it can cause deadlocks during remapping. See: https://github.com/boltdb/bolt/issues/378 | |||||
| * | Add Consul to README | Ryan Uber | 2015-05-19 | 1 | -0/+1 | |
| | | ||||||
| * | README | Ben Johnson | 2015-05-18 | 1 | -0/+15 | |
| | | ||||||
| * | Update README.md | Oliver | 2015-05-18 | 1 | -0/+1 | |
| | | | | Adding prometheus annotation server to the list projects using BoltDB. | |||||
| * | Add caveat regarding endianness of data files as suggested by Raphael Geronimi. | Ben Johnson | 2015-05-06 | 1 | -0/+5 | |
| | | ||||||
| * | Added Freehold to the projects list in README. | Tim Shannon | 2015-04-23 | 1 | -0/+1 | |
| | | | | | | | Added a few lines of documentation to clarify that read-only transactions need to be rolled back and not committed, as per the discussion in issue #344 | |||||
| * | Added InfluxDB to list of projects using bolt | Mike Marcacci | 2015-04-11 | 1 | -0/+1 | |
| | | ||||||
| * | Update README.md | chrislusf | 2015-03-29 | 1 | -1/+1 | |
| | | ||||||
| * | Update README.md | chrislusf | 2015-03-29 | 1 | -0/+1 | |
| | | ||||||
| * | Update README.md: fixed type mismatch | Daniel Speichert | 2015-03-28 | 1 | -1/+1 | |
| | | ||||||
| * | Add link to page reclamation comment. | Ben Johnson | 2015-03-27 | 1 | -0/+5 | |
| | | ||||||
| * | README | Ben Johnson | 2015-03-27 | 1 | -0/+6 | |
| | | | | Document use of free pages and page reclamation works. | |||||
| * | Document key/value safety. | Ben Johnson | 2015-03-24 | 1 | -0/+4 | |
| | | | | | | | This commit adds safety documentation to the data accessor functions in Bolt as well as the README. This was documented once in the package level godoc but it's important enough that it should be more clear. | |||||
| * | Merge pull request #330 from benbjohnson/tx-writer-to | Ben Johnson | 2015-03-22 | 1 | -2/+3 | |
| |\ | | | | | Implement io.WriterTo interface on Tx. | |||||
| | * | Implement io.WriterTo interface on Tx. | Ben Johnson | 2015-03-18 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | | This commit moves the functionality in Tx.Copy() to Tx.WriteTo(). This allows Tx to be used as an io.WriterTo which makes it easier to mock. The Tx.Copy() function still exists but it's simply a wrapper around Tx.WriteTo(). | |||||
| * | | Merge pull request #285 from tv42/batch | Ben Johnson | 2015-03-18 | 1 | -0/+42 | |
| |\ \ | |/ |/| | Add transaction batching | |||||
| | * | Add transaction batching | Tommi Virtanen | 2015-02-18 | 1 | -0/+42 | |
| | | | | | | | | | | | | | 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. | |||||
| * | | link to Bolt article | Baiju Muthukadan | 2015-03-12 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fixed missing parenthesis on the readme | Vitor De Mario | 2015-02-23 | 1 | -1/+1 | |
| |/ | ||||||
| * | added gocode.io to list of projects using bolt | everdev | 2015-02-17 | 1 | -4/+4 | |
| | | ||||||
| * | README | Ben Johnson | 2015-02-16 | 1 | -3/+3 | |
| | | | | Removed reference to LMDB's append mode being unsafe. | |||||
| * | fix 'range scans' example | Philipp Tarasiewicz | 2015-01-18 | 1 | -1/+1 | |
| | | | | Due to the fact that you want to iterate over all keys that are before or equal to `max` starting from `min` the bytes.Compare() check should look like the commit suggests. | |||||
| * | Fix syntax error in README stats example | mbertschler | 2015-01-15 | 1 | -1/+0 | |
| | | ||||||
| * | README | Ben Johnson | 2014-12-11 | 1 | -0/+34 | |
| | | | | Add a section to the README for "Managing transactions manually". | |||||
| * | grammar & typo | Russ Ferriday | 2014-12-04 | 1 | -2/+2 | |
| | | ||||||
| * | README | Ben Johnson | 2014-11-28 | 1 | -1/+1 | |
| | | ||||||
| * | README | Ben Johnson | 2014-11-28 | 1 | -1/+44 | |
| | | | | | | | | | Added a "Comparison" section to compare Bolt against other DB options: 1. Relational databases 2. LevelDB 3. LMDB | |||||
| * | v1.0 | Ben Johnson | 2014-11-27 | 1 | -17/+8 | |
| | | ||||||
| * | fix link in readme | Eric Berg | 2014-11-25 | 1 | -1/+1 | |
| | | ||||||
| * | Add caveat for memory usage. | Ben Johnson | 2014-09-15 | 1 | -0/+7 | |
| | | | | | | This commit adds a caveat for high memory usage shown by processes with large Bolt databases. This is expected behavior and is handled by the OS page cache. | |||||
| * | Fixed typo in README.md | Kevin Gillette | 2014-09-11 | 1 | -1/+1 | |
| | | ||||||
| * | Tentacool is using bolt too ;) | Guilhem Lettron | 2014-09-01 | 1 | -0/+1 | |
| | | ||||||
| * | add bleve to project list | Conrad Pankoff | 2014-08-31 | 1 | -0/+1 | |
| | | ||||||
| * | Add cayley to projects using bolt list. | Martin Czygan | 2014-08-28 | 1 | -0/+1 | |
| | | ||||||
| * | Add single-bucket/single-tx caveat. | Ben Johnson | 2014-08-24 | 1 | -0/+5 | |
| | | | | | | | | | This commit adds a caveat to the README to notify users that bulk loading random writes into a single new bucket can be problematic. This issue was reported by @freepk. Fixes #244. | |||||
| * | fix spelling mistake in README | Matt Perpick | 2014-08-20 | 1 | -1/+1 | |
| | | ||||||
| * | added ipLocator to projects using Bolt | Andreas Briese | 2014-08-18 | 1 | -0/+1 | |
| | | ||||||
| * | Add LedisDB to project list | siddontang | 2014-08-04 | 1 | -0/+1 | |
| | | ||||||
