Set generation caches to expireafterwrite, to reduce cpu pressure

This commit is contained in:
DBotThePony 2024-05-06 14:43:45 +07:00
parent b5fe913f14
commit be6f637d9b
Signed by: DBot
GPG Key ID: DCC23B5715498507
4 changed files with 6 additions and 6 deletions

View File

@ -302,7 +302,7 @@ class WorldTemplate(val geometry: WorldGeometry) {
Caffeine.newBuilder()
.maximumSize(50_000L) // plentiful of space, and allows for high hit ratio (around 79%) in most situations
// downside is memory consumption, but why should it matter when we save 80% of cpu time?
.expireAfterAccess(Duration.ofSeconds(20))
.expireAfterWrite(Duration.ofSeconds(30))
.executor(Starbound.EXECUTOR)
.scheduler(Starbound)
// .recordStats()

View File

@ -91,8 +91,8 @@ class IslandSurfaceTerrainSelector(data: Data, parameters: TerrainSelectorParame
private val cache = Caffeine.newBuilder()
.maximumSize(512L)
//.executor(Starbound.EXECUTOR)
//.scheduler(Starbound)
.executor(Starbound.EXECUTOR)
.scheduler(Starbound)
.build<Int, Column>(::compute)
override fun get(x: Int, y: Int): Double {

View File

@ -59,7 +59,7 @@ class KarstCaveTerrainSelector(data: Data, parameters: TerrainSelectorParameters
private val layers = Caffeine.newBuilder()
.maximumSize(2048L)
.softValues()
.expireAfterAccess(Duration.ofMinutes(1))
.expireAfterWrite(Duration.ofMinutes(1))
.scheduler(Starbound)
.executor(Starbound.EXECUTOR)
.build<Int, Layer>(::Layer)
@ -128,7 +128,7 @@ class KarstCaveTerrainSelector(data: Data, parameters: TerrainSelectorParameters
private val sectors = Caffeine.newBuilder()
.maximumSize(512L)
.softValues()
.expireAfterAccess(Duration.ofMinutes(1))
.expireAfterWrite(Duration.ofMinutes(1))
.scheduler(Starbound)
.executor(Starbound.EXECUTOR)
.build<Vector2i, Sector>(::Sector)

View File

@ -182,7 +182,7 @@ class WormCaveTerrainSelector(data: Data, parameters: TerrainSelectorParameters)
private val sectors = Caffeine.newBuilder()
.maximumSize(512L)
.softValues()
.expireAfterAccess(Duration.ofMinutes(1))
.expireAfterWrite(Duration.ofMinutes(1))
.scheduler(Starbound)
.executor(Starbound.EXECUTOR)
.build<Vector2i, Sector>(::Sector)