diff options
| author | Matt Corallo <[email protected]> | 2017-02-26 12:15:47 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-02-27 15:29:06 -0500 |
| commit | 50ae5c711a35828e91bbf880c9508776703ec51e (patch) | |
| tree | fcac39bcd8226e2c2542e5d8881dd8818ae3913b | |
| parent | Merge #9846: doc: Small release notes fixups in the list of pulls (diff) | |
| download | discoin-50ae5c711a35828e91bbf880c9508776703ec51e.tar.xz discoin-50ae5c711a35828e91bbf880c9508776703ec51e.zip | |
Document increase in memory usage due to mempool/dbcache sharing
| -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 557f8985d..1bf9261c8 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -342,6 +342,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 ================= |