limit cache file size lol

This commit is contained in:
ayunami2000 2022-04-17 19:39:24 -04:00
parent 1ec17ce7e7
commit 7163042f1b
1 changed files with 2 additions and 2 deletions

View File

@ -21,13 +21,13 @@ public class FileCache
if (theItem == null)
{
theItem = new CacheItem(new File(path));
cache.add(theItem);
if (theItem.file.length < 1048576) cache.add(theItem);
}
if (System.currentTimeMillis() - theItem.timestamp > 3 * 60 * 1000) // 3 minutes
{
cache.remove(theItem);
theItem = new CacheItem(new File(path));
cache.add(theItem);
if (theItem.file.length < 1048576) cache.add(theItem);
}
return theItem.file;
}