Is it a good choice if i persist server request data in database and manage them without any user interaction ? Is it good practice persisting requests at all ?
Asked
Active
Viewed 19 times
0
-
It depends on the use case I think. What is specifically your use case of persisting a request data? – sajjad Oct 13 '20 at 14:58
-
For example for retrying automatically request if they just failed. without user approve it to retry – armin7298 Oct 13 '20 at 15:04
-
Not a good idea. Data related to UI should be fetched when the app is running. But data not related to UI could be fetched any time that is necessary. – sajjad Oct 13 '20 at 18:15