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
Naive store is a really good way to persisit the event data without using external database.
The drawback is that currently is optimized for stream-like searches (sequential access) and does not support locating an event by its ID.
This can be achieved by adding index support for the store - B+ tree or hash-index.
The text was updated successfully, but these errors were encountered:
Naive store is a really good way to persisit the event data without using external database.
The drawback is that currently is optimized for stream-like searches (sequential access) and does not support locating an event by its ID.
This can be achieved by adding index support for the store - B+ tree or hash-index.
The text was updated successfully, but these errors were encountered: