diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-02-28 11:47:18 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-02-28 11:47:25 +0100 |
| commit | 1f83663bc2c83ce9cc267b359047cebff9acc4b0 (patch) | |
| tree | c30645c4a4eab1dfe58be719bb06938662665cb0 /doc | |
| parent | [doc] Update doc/bips.md for BIP90 implementation (diff) | |
| parent | Document increase in memory usage due to mempool/dbcache sharing (diff) | |
| download | discoin-1f83663bc2c83ce9cc267b359047cebff9acc4b0.tar.xz discoin-1f83663bc2c83ce9cc267b359047cebff9acc4b0.zip | |
Merge #9866: Document increase in memory usage due to mempool/dbcache sharing
50ae5c7 Document increase in memory usage due to mempool/dbcache sharing (Matt Corallo)
Tree-SHA512: e52a310a5ac1f94b30f367a7bf514b2cf0724530102953eef7f7c7e00a067db568b5e1b51129dfdb1a237e016c7a8b01cc6da8c06a24ab5b970c43d045adb204
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/release-notes.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index 0f2ed893f..9d3c3e34f 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -348,6 +348,16 @@ Fundrawtransaction change address reuse - Users should also consider using `getrawchangeaddress()` in conjunction with `fundrawtransaction`'s `changeAddress` option. +Unused mempool memory used by coincache +---------------------------------------- + +- Before 0.14, memory reserved for mempool (using the `-maxmempool` option) + went unused during initial block download, or IBD. In 0.14, the UTXO DB cache + (controlled with the `-dbcache` option) borrows memory from the mempool + when there is extra memory available. This may result in an increase in + memory usage during IBD for those previously relying on only the `-dbcache` + option to limit memory during that time. + 0.14.0 Change log ================= |