Skip to content

feat: first itereation of MVP #4

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

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
dce9341
feat(core): add serialization, ethrex db and file manager logic to re…
damiramirez Aug 12, 2025
cc6f0d4
feat(benchmarks): add benchmarking for database operations
damiramirez Aug 12, 2025
eeb35b3
chore(cargo): add memmap2 to manifest
damiramirez Aug 12, 2025
7d36e15
feat(core): use memmap2 to get a node value
damiramirez Aug 13, 2025
ef72d74
feat(bench): add an example to run with samply
damiramirez Aug 13, 2025
20ae441
chore(gitignore): add samply json
damiramirez Aug 13, 2025
eb673c2
chore(make): add target to run the profiling example with samply
damiramirez Aug 13, 2025
1eb8d70
chore(core): run make lint
damiramirez Aug 13, 2025
81ef5f7
fix(bench): avoid creating N ethrex db
damiramirez Aug 13, 2025
58c95a3
refactor(db): use Node instead of Trie when calling commit
damiramirez Aug 13, 2025
b22ee14
chore(db): fix clippy warnings
damiramirez Aug 14, 2025
5a15590
refactor(test): use only one trie and avoid calling commit()
damiramirez Aug 14, 2025
270e5c5
docs(core): improve documentation
damiramirez Aug 14, 2025
2369510
chore(cargo): add comment about using a local ethrex crate
damiramirez Aug 14, 2025
07ed21f
chore(cargo): move tempdir to dev-dependencies
damiramirez Aug 14, 2025
6db06d7
chore(core): move structs from ethrex to ethrex_db
damiramirez Aug 15, 2025
93a1b7e
chore(core): re exports modules and update imports
damiramirez Aug 15, 2025
0b0de4b
docs(README): add EthrexDB MVP to the README
damiramirez Aug 15, 2025
44a5336
refactor(bench): change criterion groups names
damiramirez Aug 16, 2025
5b8e18a
chore(core): run make lint
damiramirez Aug 18, 2025
b54d1b2
chore(core): run cargo fmt --all
damiramirez Aug 18, 2025
c042c25
refactor(db, serialization): simplify buffer reading by introducing h…
damiramirez Aug 18, 2025
012e076
docs(README): add a section about benchmark and profiling
damiramirez Aug 18, 2025
9d43e3b
refactor(rlp): clean up ethrex code
damiramirez Aug 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ target/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Samply json
profile.json.gz
Loading