This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Bloomchain #1014
Merged
Merged
Bloomchain #1014
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
710ea4e
use bloomchain crate in blockchain module. remove obsole chainfilter …
debris 60476f3
update database version to 6.0
debris 6b6276b
removed redundant line
debris a3740fa
Merge branch 'master' of github.com:ethcore/parity into bloomchain
debris 0eddbf5
Merge branch 'master' into bloomchain
debris a5c59ec
Merge branch 'master' of github.com:ethcore/parity into bloomchain
debris 2b8cf7a
simple db migration
debris ed3d77b
make migration slightly more functional
debris 1eb2c65
Merge branch 'migration' into bloomchain
debris a03e63f
bloomchain migration
debris 321e0bf
migration version is just a single unsigned integer
debris 180fe4c
Merge branch 'migration' into bloomchain_migration
debris 6cda079
updated migration v6
debris bac4dbe
Merge branch 'master' of github.com:ethcore/parity into migration
debris 61ea749
parity migration
debris a506c64
Merge branch 'db_migration' into bloomchain_migration
debris de7e7fa
db migration
debris 7b3a253
removed hardcoded migration dir
debris 6ea0dc5
Merge branch 'master' of github.com:ethcore/parity into bloomchain
debris 0531edc
Merge branch 'master' of github.com:ethcore/parity into bloomchain
debris 1c0c4a4
replace ptr::copy with clone_from_slice, removed potential endianess …
debris e94b580
Merge branch 'master' into bloomchain
debris fe4264d
removed superfluous line
debris bd504ef
blockchains log blooms config is not exposed any more
debris File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it really sensible to place runtime options (
_cache_size
) with database-persistent options (log_blooms
)?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This option (
log_blooms
) can be configurable now. Syncing from scratch could be done with different number oflevels
andelements_per_index
. There is no cli for it yet, but I'm willing to add it someday.