Change from 128mb to 256mb region size

This commit is contained in:
VocalFan
2025-02-07 19:46:49 -05:00
parent 4e9c4587e5
commit 9886d49204
3 changed files with 3 additions and 3 deletions
@@ -20,7 +20,7 @@ namespace ARMeilleure.Translation.Cache
private static readonly int _pageMask = _pageSize - 1;
private const int CodeAlignment = 4; // Bytes.
private const int CacheSize = 128 * 1024 * 1024;
private const int CacheSize = 256 * 1024 * 1024;
private static JitCacheInvalidation _jitCacheInvalidator;