-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Once we implemented useQuery
it replaces useState
in some cases.
It's a must have for lists of an indefinite / constantly growing size. If you only have a finite number of states stored in a list then you can still use useState
and keep track of your states / ids manually.
useState
hasn't been optimized for large datasets. useQuery
is generally preferable if you plan to increase the number of states stored in a list constantly over time.
See also #26
This involves
- Writing a medium post
- Adding detailed documentation
- Asking stackoverflow questions
All this can be done by anyone who sufficiently understands react server and the two different approaches of storing and querying data.
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed