-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Store without a Fetcher #536
Comments
Hey there @4face-studi0 - Thanks for raising! @digitalbuddha - Thoughts on a special |
Interesting idea, what functionality would this store give you that dealing directly with a source of truth would not? |
@digitalbuddha from the top of my experience, the main benefits I see are:
The second one doesn't give a strong practical benefit, but I don't like the idea of having a clone of Store built in the project. |
Got it thank you for the explanation. Let me give it some thought as edge cases and breaking of the usual unidirectional flow are concerns |
Is your feature request related to a problem? Please describe.
I would like to be able to create a
(Mutable)Store
for local-only data.The goal is to replace the Repositories with Stores; the issue comes when I can't write directly to a
Store
that is not Mutable, but to create aMutableStore
I need anUpdater
and aBookeeper
Describe the solution you'd like
Describe alternatives you've considered
LocalStore
in the project, which would be a clone ofStore
, but with local data only -> it would be confusing, it would still behave differently from the originalStore
, without in-memory cache and it would need to be maintained "manually"Additional context
none
The text was updated successfully, but these errors were encountered: