Set generation caches to expireafterwrite, to reduce cpu pressure
This commit is contained in:
parent
b5fe913f14
commit
be6f637d9b
@ -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()
|
||||
|
@ -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 {
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user