]> git.bitcoin.ninja Git - rust-lightning/commit
Cache the total points tracked in our historical liquidity data
authorMatt Corallo <git@bluematt.me>
Sat, 9 Dec 2023 04:18:46 +0000 (04:18 +0000)
committerMatt Corallo <git@bluematt.me>
Mon, 19 Aug 2024 14:25:58 +0000 (14:25 +0000)
commit8904073a15d87b789ebf36993ed1b06fee591a1e
treedbf65a4db613f59aa10eb32b10cfad1d8b2dbdbc
parentc0cc30e874e22575cc258e53a15ebda6b75ecdb1
Cache the total points tracked in our historical liquidity data

When we go to score a channel using the historical liquidity data,
the first thing we do is step through all the valid bucket
combinations, multiply the min and max bucket, and then add them
together to calculate the total number of points tracked. This
isn't a free operation, and for scorers without much data it
represents a large part of the total time spent scoring during
routefinding.

Thus, here we cache this value, updating it every time the buckets
are updated.
lightning/src/routing/scoring.rs