Backbone Marionette Composite View Rendering
问题 Problem in short: Initializing a composite view in marionette with a collection of size ~500 stalls the app for around a minute. I'm building a backbone marionette app to maintain a list of items. When testing with a collection size of ~50 everything is fine. When the limit grows, app goes unresponsive. Store.ItemsListView = Marionette.CompositeView.extend({ tagName: "div", template: "#items-list", itemView: Store.ItemView, itemViewContainer: "tbody", emptyView: Store.NoDataView, }); Store