el_chief
7 Jan 2012, 4:43 PM
Let's say I have a CRUD application with a number of entities, such as a contacts and orders.
Each entity has a store and model, perhaps with some associations. Each entity also has a grid view, and a data entry form. Each entity gets its own controller (or perhaps one per view, so 2 per entity)
So 10 entities = 10 stores, 10 model definitions, 10 grids, 10 forms, 10-20 controllers
Question:
What is the maximum number of entities I can have loaded at once before I start to see debilitating memory/performance problems in the browser? (assume IE8+, and recent versions of chrome/ff/safari)
is it 10? 100? 1000?
What is the crucial factor wrt performance/memory? Is it the store, model, view, or controller?
Thanks!
Each entity has a store and model, perhaps with some associations. Each entity also has a grid view, and a data entry form. Each entity gets its own controller (or perhaps one per view, so 2 per entity)
So 10 entities = 10 stores, 10 model definitions, 10 grids, 10 forms, 10-20 controllers
Question:
What is the maximum number of entities I can have loaded at once before I start to see debilitating memory/performance problems in the browser? (assume IE8+, and recent versions of chrome/ff/safari)
is it 10? 100? 1000?
What is the crucial factor wrt performance/memory? Is it the store, model, view, or controller?
Thanks!