You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ Along those lines, ClearScript.Manager does the following to make certain things
30
30
- Allow easy management of the memory usage of each instance of the V8 Runtime and sets the limits to a much lower threshold than the default V8 settings.
31
31
32
32
## Configuration Parameters
33
+
These settings can be set manually or added to the AppSettings of your application config file.
33
34
34
35
//V8 Max Executable Size in bytes:
35
36
int MaxExecutableBytes { get; }
@@ -42,13 +43,13 @@ Along those lines, ClearScript.Manager does the following to make certain things
42
43
43
44
//Default script timeout in ms:
44
45
int ScriptTimeoutMilliSeconds { get; }
46
+
47
+
//Max number of simultaneous V8 Runtimes:
48
+
int RuntimeMaxCount { get; }
49
+
50
+
//Per Runtime, the maximum number of cached scripts:
51
+
int ScriptCacheMaxCount { get; }
45
52
46
-
//Max number of simultaneous V8 Runtimes:
47
-
int RuntimeMaxCount { get; }
48
-
49
-
//Per Runtime, the maximum number of cached scripts:
0 commit comments