nimiq / core-rs-albatross

Rust implementation of the Albatross protocol
https://nimiq.com
Other
128 stars 43 forks source link

Efficient transaction retrieval beyond limit #2697

Open paberr opened 1 week ago

paberr commented 1 week ago

Libmdbx supports set_lowerbound on cursors, which allows to seek to a specific duplicate data item efficiently. This is because duplicate items are represented as another B+Tree.

We can thus also retrieve older transaction history efficiently.