Limit memory usage
Hypertest provides an inbuilt way to limit your memory usage to avoid using too much memory. You can provide us a config to limit the memory usage that looks like this.
htSdk.setMemoryUsageLimiterConfig({
memoryUsageUpperThresholdMB: 500, // megabytes
memoryUsageLowerThresholdMB: 400, // megabytes
memoryCheckIntervalMs: 10, // Milliseconds
});Last updated