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'm wondering if a projection has a built-in cache or checkpoint mechanism we can use to speed up the operation when we do the same projection varying from each other only by the time of its execution.
Use case:
t0 --> event1 --> event2 --> event3 --> t1 --> event4 --> t2
After making an aggregate projection at t1 marten already processed events 1,2 and 3 and if I make the same projection at t2 I would rather it uses the result of t1 projection and only project the time between t1 and t2 and get event 4 and add it to the top of it.
It is a feature on Event Store, I've tried to find something similar on marten's documentation and issues but couldn't find any.
The reason I'm searching for a feature like it on Marten is that I'm worried if event projection time complexity will increase with the event data stored increases.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm wondering if a projection has a built-in cache or checkpoint mechanism we can use to speed up the operation when we do the same projection varying from each other only by the time of its execution.
Use case:
t0 --> event1 --> event2 --> event3 --> t1 --> event4 --> t2
After making an aggregate projection at t1 marten already processed events 1,2 and 3 and if I make the same projection at t2 I would rather it uses the result of t1 projection and only project the time between t1 and t2 and get event 4 and add it to the top of it.
It is a feature on Event Store, I've tried to find something similar on marten's documentation and issues but couldn't find any.
The reason I'm searching for a feature like it on Marten is that I'm worried if event projection time complexity will increase with the event data stored increases.
Beta Was this translation helpful? Give feedback.
All reactions