mirror of
https://github.com/plexusorg/Module-HTTPD.git
synced 2024-11-21 19:25:02 +00:00
limit cache file size lol
This commit is contained in:
parent
1ec17ce7e7
commit
7163042f1b
4
src/main/java/dev/plex/cache/FileCache.java
vendored
4
src/main/java/dev/plex/cache/FileCache.java
vendored
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user