mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:11 +01:00
Backport commit 47928 committed by NathanGray, Smarter cache expiry based on age
This commit is contained in:
parent
838d747667
commit
747a1eb619
@ -52,11 +52,11 @@ egw.extend("data", egw.MODULE_APP_LOCAL, function (_app, _wnd) {
|
|||||||
/**
|
/**
|
||||||
* Looks like too much data is cached. Forget some.
|
* Looks like too much data is cached. Forget some.
|
||||||
*
|
*
|
||||||
* Tries to free up localStorage by removing cached data for the given
|
* Tries to free up localStorage by removing the oldest cached data for the
|
||||||
* prefix, but if none is found it will remove all cached data.
|
* given prefix, but if none is found it will look at all cached data.
|
||||||
*
|
*
|
||||||
* @param {string} _prefix UID / application prefix
|
* @param {string} _prefix UID / application prefix
|
||||||
* @returns {Number} Number of cached recordsets removed
|
* @returns {Number} Number of cached recordsets removed, normally 1.
|
||||||
*/
|
*/
|
||||||
function _clearCache(_prefix)
|
function _clearCache(_prefix)
|
||||||
{
|
{
|
||||||
@ -66,8 +66,21 @@ egw.extend("data", egw.MODULE_APP_LOCAL, function (_app, _wnd) {
|
|||||||
{
|
{
|
||||||
if(window.localStorage.key(i).indexOf('cache_'+_prefix) == 0)
|
if(window.localStorage.key(i).indexOf('cache_'+_prefix) == 0)
|
||||||
{
|
{
|
||||||
indexes.push(i);
|
var key = window.localStorage.key(i);
|
||||||
window.localStorage.removeItem(window.localStorage.key(i));
|
var cached = JSON.parse(window.localStorage.getItem(key));
|
||||||
|
|
||||||
|
if(cached.lastModification)
|
||||||
|
{
|
||||||
|
indexes.push({
|
||||||
|
key: key,
|
||||||
|
lastModification: cached.lastModification
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// No way to know how old it is, just remove it
|
||||||
|
window.localStorage.removeItem(key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Nothing for that prefix? Clear all cached data.
|
// Nothing for that prefix? Clear all cached data.
|
||||||
@ -75,6 +88,17 @@ egw.extend("data", egw.MODULE_APP_LOCAL, function (_app, _wnd) {
|
|||||||
{
|
{
|
||||||
return _clearCache('');
|
return _clearCache('');
|
||||||
}
|
}
|
||||||
|
// Found some cached for that prefix, only remove the oldest
|
||||||
|
else if (indexes.length > 0)
|
||||||
|
{
|
||||||
|
indexes.sort(function(a,b) {
|
||||||
|
if(a.lastModification < b.lastModification) return 1;
|
||||||
|
if(a.lastModification > b.lastModification) return -1;
|
||||||
|
return 0;
|
||||||
|
})
|
||||||
|
window.localStorage.removeItem(indexes.pop().key);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
return indexes.length;
|
return indexes.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,15 +177,18 @@ egw.extend("data", egw.MODULE_APP_LOCAL, function (_app, _wnd) {
|
|||||||
}
|
}
|
||||||
catch (e)
|
catch (e)
|
||||||
{
|
{
|
||||||
egw.debug('warning', 'Tried to cache some data', cache_key, e);
|
// Maybe ran out of space? Free some up.
|
||||||
|
|
||||||
// Maybe ran out of space? Free some up...
|
|
||||||
if(e.name == 'QuotaExceededError' // storage quota is exceeded, remove cached data
|
if(e.name == 'QuotaExceededError' // storage quota is exceeded, remove cached data
|
||||||
|| 'NS_ERROR_DOM_QUOTA_REACHED') // FF-name
|
|| 'NS_ERROR_DOM_QUOTA_REACHED') // FF-name
|
||||||
{
|
{
|
||||||
var count = _clearCache(_context.prefix);
|
var count = _clearCache(_context.prefix);
|
||||||
egw.debug('info', 'localStorage full, removed ' + count + ' stored datasets');
|
egw.debug('info', 'localStorage full, removed ' + count + ' stored datasets');
|
||||||
}
|
}
|
||||||
|
// No, something worse happened
|
||||||
|
else
|
||||||
|
{
|
||||||
|
egw.debug('warning', 'Tried to cache some data. It did not work.', cache_key, e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user