I'm wondering if Amplify can easily handle big data model with lots of nested knockout observable objects. The goal is to save and restore current state of the data (view) model after page refresh.
From few examples seems that every observable needs to be extended to use local store. Probably that can be applied globaly, but I'm not sure how will the nested observable objects behave. (ie. viewModel has many observable variables and each of them holds json objects with more observable variables etc.). Is it possible to save the state of the viewModel so that after page refresh all nested observables are restored in a proper way? (Another problem could be performance as it has to be used on the mobile devices)
Does anyone has any experience with these kind of issues?