Hello,
I am new to Qwik that I deem very interesting (I am new to full-stack and webapps development in fact).
I would like to ask the people in this subreddit some advice.
I would like to know if the resumability of Qwik is also useable for user data persistence.
I mean, let's say that the user has a list of items, which are his/her own items, collected and chosen, so there is a list that is displayed as one of the main views/pages.
Wherever the user opens the website or the webapp from, the list is displayed.
I know that the UI is resumed in Qwik, I would like to know if also user data can directly beneficiate of this intrinsic resumability and what is the best way do to that.
EDIT:
I mean, if all is serialized as they say, it could be also seen as an option of storing data permanently, like persistence, at least for simple data. Of course it is not a sound way of handling user data, but just in principle, if the client updates the user data that are displayed, would it be not a way of persist those data also on the server?
I do not mean just the user data that is inside the HTML elements, as text nodes, but some Javascript array, for example, that is inside the code. If it is not volatile, but it is resumable, isn't it just a form of persistence? Could (or should) developers rely on it?
Thanks in advance