Skip to content

Commit

Permalink
[jvm] Boost size of multi-dispatch cache
Browse files Browse the repository at this point in the history
This copies what was done for (old multi-dispatch cache of) MoarVM with
MoarVM/MoarVM@99bf383cb1
  • Loading branch information
usev6 committed Dec 18, 2017
1 parent dc8f067 commit 8351167
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -8,7 +8,7 @@

public class MultiCacheInstance extends SixModelObject {
private static final int MD_CACHE_MAX_ARITY = 4;
private static final int MD_CACHE_MAX_ENTRIES = 16;
private static final int MD_CACHE_MAX_ENTRIES = 32;
private static final int MD_CACHE_INT = 1;
private static final int MD_CACHE_NUM = 2;
private static final int MD_CACHE_STR = 3;
Expand Down

0 comments on commit 8351167

Please sign in to comment.