@@ -74,7 +74,12 @@ namespace Js
74
74
#ifdef FAULT_INJECTION
75
75
disposeScriptByFaultInjectionEventHandler (nullptr ),
76
76
#endif
77
+
78
+ #ifndef CC_LOW_MEMORY_TARGET
77
79
integerStringMap (this ->GeneralAllocator ()),
80
+ integerStringMapCacheMissCount(0 ),
81
+ integerStringMapCacheUseCount(0 ),
82
+ #endif
78
83
guestArena (nullptr ),
79
84
raiseMessageToDebuggerFunctionType(nullptr ),
80
85
transitionToDebugModeIfFirstSourceFn(nullptr ),
@@ -1753,23 +1758,32 @@ namespace Js
1753
1758
1754
1759
// TODO: (obastemur) Could this be dynamic instead of compile time?
1755
1760
#ifndef CC_LOW_MEMORY_TARGET // we don't need this on a target with low memory
1761
+ #define NUMBER_TO_STRING_CACHE_SIZE 1024
1762
+ #define NUMBER_TO_STRING_RE_CACHE_LIMIT 1024
1763
+ #define NUMBER_TO_STRING_RE_CACHE_REASON_LIMIT 48
1756
1764
if (!this ->integerStringMap .TryGetValue (value, &string))
1757
1765
{
1758
1766
// Add the string to hash table cache
1759
- // Don't add if table is getting too full. We'll be holding on to
1760
- // too many strings, and table lookup will become too slow.
1761
- // TODO: Long term running app, this cache doesn't provide much value?
1762
- // i.e. what is the importance of first 512 number to string calls?
1763
- // a solution; count the number of times we couldn't use cache
1764
- // after cache is full. If it's bigger than X ?? the discard the
1765
- // previous cache?
1766
- if (this ->integerStringMap .Count () > 512 )
1767
+ // limit the htable size to NUMBER_TO_STRING_CACHE_SIZE and refresh the cache often
1768
+ // however don't re-cache if we didn't use it much! App may not be suitable for caching.
1769
+ // 4% -> NUMBER_TO_STRING_RE_CACHE_REASON_LIMIT is equal to perf loss while we cache the stuff
1770
+ if (integerStringMapCacheMissCount > NUMBER_TO_STRING_RE_CACHE_LIMIT)
1771
+ {
1772
+ integerStringMapCacheMissCount = 0 ;
1773
+ if (integerStringMapCacheUseCount >= NUMBER_TO_STRING_RE_CACHE_REASON_LIMIT)
1774
+ {
1775
+ this ->integerStringMap .Clear ();
1776
+ }
1777
+ integerStringMapCacheUseCount = 0 ;
1778
+ }
1779
+
1780
+ if (this ->integerStringMap .Count () > NUMBER_TO_STRING_CACHE_SIZE)
1767
1781
{
1768
1782
#endif
1769
1783
// Use recycler memory
1770
1784
string = TaggedInt::ToString (value, this );
1771
-
1772
1785
#ifndef CC_LOW_MEMORY_TARGET
1786
+ integerStringMapCacheMissCount++;
1773
1787
}
1774
1788
else
1775
1789
{
@@ -1781,6 +1795,10 @@ namespace Js
1781
1795
this ->integerStringMap .AddNew (value, string);
1782
1796
}
1783
1797
}
1798
+ else if (integerStringMapCacheUseCount < NUMBER_TO_STRING_RE_CACHE_REASON_LIMIT)
1799
+ {
1800
+ integerStringMapCacheUseCount++;
1801
+ }
1784
1802
#endif
1785
1803
1786
1804
return string;
0 commit comments