()
| 300 | } |
| 301 | |
| 302 | function memoryAdaptiveCacheLimit(): number { |
| 303 | const total = getSystemTotalMb(); |
| 304 | if (total < 4096) return 32; |
| 305 | if (total <= LOW_MEMORY_TOTAL_MB_THRESHOLD) return 64; |
| 306 | return DEFAULT_CONFIG.frameDataUriCacheLimit; |
| 307 | } |
| 308 | |
| 309 | function memoryAdaptiveCacheBytesMb(): number { |
| 310 | const total = getSystemTotalMb(); |
no test coverage detected