Skip to content

Commit

Permalink
Increase height cache size.
Browse files Browse the repository at this point in the history
  • Loading branch information
ComBatVision committed Dec 25, 2024
1 parent ccf144d commit e5bfda8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract class AbstractElevationCoverage: ElevationCoverage {
override var timestamp = Clock.System.now().toEpochMilliseconds()
protected set
private var userProperties: MutableMap<Any, Any>? = null
private val heightCache = LruMemoryCache<Int,Float>(50000)
private val heightCache = LruMemoryCache<Int,Float>(100000)

protected fun updateTimestamp() {
timestamp = Clock.System.now().toEpochMilliseconds()
Expand Down

0 comments on commit e5bfda8

Please sign in to comment.