You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2021. It is now read-only.
Currently, we dump the entire contents of Rest Easy into the vuex store and then work off of that. In certain situations, such as the one outlined in issue funkhaus/Rest-Easy#16 the vast majority of that data could potentially be redundant.
In these situations the best solution is to find a cleaner way to output all that data at the server level. If vuepress does end up getting a large rest-easy payload however, we should put extra logic in place to reduce redundancy. The stress put on the front end can be considerable, because vue is attempting to be reactive to every single object even though most of them will never change.
Basically, it's important to keep the total number of serialized posts we store in vuex low.