Posted on: 2/28/2014 7:35:22 PM | Views : 608

Our data structures are very very large (several hundred Kilobytes worth)  And starting up and initializing them today in C++ takes about 30 seconds on a core i7.
The entire data structure has to be preserved between webpages.  As it is today under MVC, this means I have to transport in the entire data structure as the model.
This is problematic.
A number of our data controls are cross dependent.  (Change Control A and it might change Data B, Data C, Data D and Control B and Control K)  This requires AJAX change event notifications (Post/Get)  With a very large data structure (several hundred K) this will be agonizingly slow, especially for our dial up customers or mobile broadband customers. So I'm looking for suggestions on how to preserve the data between web events without having to either
A) Pass a subset of the data and reload the entire data structure from a database file.   Then apply the ch ...

Go to the complete details ...