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
in the as-library example, using AtLeastAsFresh.
it seems that in this scenario we can use FullyConsistent mode without performance penalty.
or we can use MinimizeLatency without any inconsistencies.
is there anything must be considered here?
The text was updated successfully, but these errors were encountered:
@chezgi the memory datastore is not meant for high throughput workloads, it was just a reference implementation for testing and we are aware it has some bottlenecks, particularly with writes.
With that said, you can probably use FullyConsistent and not get much of the overhead other datastores get because loading relationships is fairly cheap. MinimizeLatenzy will behave like other datastores, and so a default staleness of 5.5 seconds is possible
in the
as-library
example, usingAtLeastAsFresh
.it seems that in this scenario we can use
FullyConsistent
mode without performance penalty.or we can use
MinimizeLatency
without any inconsistencies.is there anything must be considered here?
The text was updated successfully, but these errors were encountered: