-
Notifications
You must be signed in to change notification settings - Fork 793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't keep all blocks in memory #675
Comments
I have been working on this a little, but if you have some extra time to get it done, go for it. |
Why are you storing blocks into ChainBase at all in the first place? Even if you remove that data later, that is still causing additional pages of memory to become dirty unnecessarily, which may lead to additional IO. There is no need for the |
Merged |
Optional field reputation. steemit#674
Currently a fair amount of the memory usage of steemd is due to keeping all the blocks in memory. It's fairly low-hanging fruit to take this data out of memory and read from the block log instead.
The text was updated successfully, but these errors were encountered: