According to Derick Bailey in one of his posts , Template Cache Built In To Backbone.Marionette
So when i specify a template like this
Backbone.Marionette.ItemView.extend({template : '#template1'});
Does it really store the template template1 into template cache the first time and access it from cache subsequently? I have this doubt because when i inspect the global TemplateCache object , it is not actually being stored. Am i missing something?
Is the template being selected from DOM each time? (Derick even says DOM Selection is expensive )
I am a new to Marionette.Any help would be really appreciated.Thanks :)