vinyl: do not handle restore in next_key/next_lsn callbacks
Not only restore() callback can restore the iterator position after the source changed - next_key() and next_lsn() can do that too, which brings additional complexity. Do we really need it? Not really: - We can avoid handling restoration in next_key() by simply calling restore() before it. This is cheap as restore() is a no-op if the source was not changed. - Regarding next_lsn() - when it comes to calling it, we iterate over sources from the most recent one to the oldest, which means that the only sources out there that may yield, on-disk runs, are guaranteed to be iterated last, after all mutable sources (txw, cache, mems), so none of the mutable sources needs to be restored in this case. Simplify the read iterator as per above.
Showing
- src/box/vy_cache.c 1 addition, 4 deletionssrc/box/vy_cache.c
- src/box/vy_mem.c 2 additions, 25 deletionssrc/box/vy_mem.c
- src/box/vy_read_iterator.c 23 additions, 19 deletionssrc/box/vy_read_iterator.c
- src/box/vy_tx.c 2 additions, 1 deletionsrc/box/vy_tx.c
- test/unit/vy_cache.c 1 addition, 62 deletionstest/unit/vy_cache.c
- test/unit/vy_cache.result 7 additions, 16 deletionstest/unit/vy_cache.result
Loading
Please register or sign in to comment