aboutsummaryrefslogtreecommitdiff
path: root/README.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Explain iterating over sub-buckets in READMEMark Rushakoff2015-11-221-4/+9
|
* update WriteTo() docsBen Johnson2015-11-061-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 typoCharlie Cochrane2015-11-031-2/+2
|
* typo and highlightHung Nguyen Viet2015-10-281-3/+3
|
* README: add 'Reading the Source' sectionBen Johnson2015-10-241-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 spacePatrick Mezard2015-10-201-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 readmeRogier Lommers2015-10-181-0/+44
|
* typosJohn ShaggyTwoDope Jenkins2015-10-131-2/+2
|
* add stow and buckets to projects listJason Voigt2015-09-211-0/+4
|
* Better URL for Bazil in READMETommi Virtanen2015-07-291-1/+1
|
* README: add drive to projects using boltEmmanuel Odeke2015-07-141-0/+1
|
* Added Kala to Projects Using Bolt sectionAJ Bahnken2015-06-101-0/+1
|
* Add docs for dependent transactions.Ben Johnson2015-05-211-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 READMERyan Uber2015-05-191-0/+1
|
* READMEBen Johnson2015-05-181-0/+15
|
* Update README.mdOliver2015-05-181-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 Johnson2015-05-061-0/+5
|
* Added Freehold to the projects list in README.Tim Shannon2015-04-231-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 boltMike Marcacci2015-04-111-0/+1
|
* Update README.mdchrislusf2015-03-291-1/+1
|
* Update README.mdchrislusf2015-03-291-0/+1
|
* Update README.md: fixed type mismatchDaniel Speichert2015-03-281-1/+1
|
* Add link to page reclamation comment.Ben Johnson2015-03-271-0/+5
|
* READMEBen Johnson2015-03-271-0/+6
| | | Document use of free pages and page reclamation works.
* Document key/value safety.Ben Johnson2015-03-241-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-toBen Johnson2015-03-221-2/+3
|\ | | | | Implement io.WriterTo interface on Tx.
| * Implement io.WriterTo interface on Tx.Ben Johnson2015-03-181-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/batchBen Johnson2015-03-181-0/+42
|\ \ | |/ |/| Add transaction batching
| * Add transaction batchingTommi Virtanen2015-02-181-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 articleBaiju Muthukadan2015-03-121-1/+1
| |
* | Fixed missing parenthesis on the readmeVitor De Mario2015-02-231-1/+1
|/
* added gocode.io to list of projects using bolteverdev2015-02-171-4/+4
|
* READMEBen Johnson2015-02-161-3/+3
| | | Removed reference to LMDB's append mode being unsafe.
* fix 'range scans' examplePhilipp Tarasiewicz2015-01-181-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 examplembertschler2015-01-151-1/+0
|
* READMEBen Johnson2014-12-111-0/+34
| | | Add a section to the README for "Managing transactions manually".
* grammar & typoRuss Ferriday2014-12-041-2/+2
|
* READMEBen Johnson2014-11-281-1/+1
|
* READMEBen Johnson2014-11-281-1/+44
| | | | | | | | Added a "Comparison" section to compare Bolt against other DB options: 1. Relational databases 2. LevelDB 3. LMDB
* v1.0Ben Johnson2014-11-271-17/+8
|
* fix link in readmeEric Berg2014-11-251-1/+1
|
* Add caveat for memory usage.Ben Johnson2014-09-151-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.mdKevin Gillette2014-09-111-1/+1
|
* Tentacool is using bolt too ;)Guilhem Lettron2014-09-011-0/+1
|
* add bleve to project listConrad Pankoff2014-08-311-0/+1
|
* Add cayley to projects using bolt list.Martin Czygan2014-08-281-0/+1
|
* Add single-bucket/single-tx caveat.Ben Johnson2014-08-241-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 READMEMatt Perpick2014-08-201-1/+1
|
* added ipLocator to projects using BoltAndreas Briese2014-08-181-0/+1
|
* Add LedisDB to project listsiddontang2014-08-041-0/+1
|