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
Found that if you use the V8Runtime.CreateScriptEngine method for spinning up a new engine context you can pass in options to disable allowing calls out to the .net host environment or variables. This should give a "significant" performance boost apparently. Might help with #3
See Microsoft.ClearScript.V8.V8ScriptEngineFlags Enumeration
Option DisableGlobalMembers - Specifies that support for GlobalMembers behavior is to be disabled. This option yields a significant performance benefit for global item access.
For reference GlobalMembers - Defines options for exposing host resources to script code.
The text was updated successfully, but these errors were encountered:
Found that if you use the V8Runtime.CreateScriptEngine method for spinning up a new engine context you can pass in options to disable allowing calls out to the .net host environment or variables. This should give a "significant" performance boost apparently. Might help with #3
See Microsoft.ClearScript.V8.V8ScriptEngineFlags Enumeration
Option DisableGlobalMembers - Specifies that support for GlobalMembers behavior is to be disabled. This option yields a significant performance benefit for global item access.
For reference GlobalMembers - Defines options for exposing host resources to script code.
The text was updated successfully, but these errors were encountered: