Tweak cpu cache deletion policy values

This commit is contained in:
gdkchan 2018-09-23 15:51:25 -03:00
parent 7de7b559ad
commit 46001f3cbc

View file

@ -8,9 +8,9 @@ namespace ChocolArm64
{
class ATranslatorCache
{
private const int MaxTotalSize = 2 * 1024 * 256;
private const int MaxTimeDelta = 30000;
private const int MinCallCountForUpdate = 1000;
private const int MaxTotalSize = 4 * 1024 * 256;
private const int MaxTimeDelta = 2 * 60000;
private const int MinCallCountForUpdate = 250;
private class CacheBucket
{