You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be hard for us to have the events pipeline be completely stream based, but I wonder if we could have the reader be stream based and then have the pipeline iterate through one event at a time using an IAsyncEnumerable<PersistentEvent> where we just load a single event into memory at a time and process it and then release that memory back into a pool to load the next one.
It allows for direct async saving to
Stream
; have added PR to FoundatioFx/Foundatio#259 to support the async modeWould hopefully reduce the steps in serializing in memory, re-reading and then writing out again
The text was updated successfully, but these errors were encountered: