I recently discovered that c:/Users/username/AppData/Local/AppName/Cache contained over 100K cache files.
I read up a bit and saw that the gui.App.clearCache() method should fix this.
I execute this method at start and at shutdown of the app. (after assigning gui to require("nw.gui"))
However, this doesn't seem to help. Nothing is being deleted.
Any ideas why that is?
The require cache is apparently only available on global.require.cache.
Clearing that cache manually made it work for me.
for(module in global.require.cache){
if(global.require.cache.hasOwnProperty(module)){
delete global.require.cache[module];
}
}
location.reload()
Neither the gui.APP.clearCache() nor the gui.Window.get().reloadIgnoringCache() had any effect for me.
Ran into the same issue so I created a quick solution to solve the problem temporarily until I can rely on the native gui.App.clearCache function. This removes the entire Cache directory and recreates it asynchronously.
This requires fs-extra and should work on Linux, OSX and Windows.
var customClearCache = function(){
var dir = path.join(gui.App.dataPath, '/Cache');
fs.remove(dir, function(err) {
if (err) return console.error(err)
fs.mkdirs(dir, function(err) {
if (err) return console.error(err)
// This is where I start my app
});
});
};