Caching is forced to be off by default in ext.js.
There should be an option in admin-interface to turn on caching if you are in production-server and don't change ext-components.
Loading times improve a lot with this change.
suggestion:
- add "disableCaching: false",
app.js:
Ext.Loader.setConfig({
enabled: true,
disableCaching: false,
paths: {
Ext: '.',
'Ext.ux': 'resources/ux'
}
});
...
Caching is forced to be off by default in ext.js.
There should be an option in admin-interface to turn on caching if you are in production-server and don't change ext-components.
Loading times improve a lot with this change.
suggestion:
app.js:
Ext.Loader.setConfig({
enabled: true,
disableCaching: false,
paths: {
Ext: '.',
'Ext.ux': 'resources/ux'
}
});
...