Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

v0.17.1

Compare
Choose a tag to compare
@afalaleev afalaleev released this 03 Apr 09:42
· 940 commits to master since this release
64b96ef

Configurable timeouts for read/write locks.

For example, you have a high load node, which is used to get data from the blockchain. Such nodes should in any case accept signed blocks, but it can skip transactions for broadcasting, because they may come to the node in a signed block.

For more information #499

Automatically scale shared memory

There are two main goals:

  1. To automate the scaling of the shared memory file. Now, you don't need to check free size of your shared memory.
  2. To increase performance of accessing to data stored in shared memory file. Because in this case data are packed in near lying pages, and OS do not flush memory pages to load other memory pages with requested data

For more information #501