Open maarek opened 4 years ago
Hum, you are right, it seems like a bug, when specifying the range from
value the client must see every events starting from the left bound and all the new events.
Unfortunately I don't think I will have time to look into this bug for now.
Thank you for your report anyway, if you have time to look into that it would be pretty cool :)
When subscribing to a stream with only
from
defined, meilies seems to only read the event at thefrom
location and then all new events. It does not read all events starting from thefrom
value.From my understanding, events are keyed by event number and
ReadRange::ReadFrom(from)
usestree.scan_prefix(_)
which in the case of from being0
only 1 event is keyed with 0. Is this this right? Is this the intended result?