如何最好地配置 JS 运行时?
我想知道如何最好地配置 JSRuntime。 JS_NewRuntime()、JS_NewContext()、JS_SetGCParameter()、JS_SetGCParameterForThread()等参数有很多。 有一些指导方针或建议吗?
I wondering how to configure the JSRuntime at best.
There are many parameters for JS_NewRuntime(), JS_NewContext(), JS_SetGCParameter(), JS_SetGCParameterForThread(), ...
Are there some guidelines or recommendations ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认选项应该可以正常工作,我只需确保启用了 JIT 方法——这是通过 JS_SetOption 完成的,该 JS_SetOption 取决于您正在运行的 SpiderMonkey 版本。
另请参阅 JSAPI 用户指南,了解嵌入技术和背景信息的示例,以及JSPI 食谱。
The default options should work fine, I would just make sure that the method JIT is enabled -- this is done through a JS_SetOption that depends on which SpiderMonkey version you're running.
Also check out the JSAPI user guide for example embedding techniques and background information, as well as the JSPI cookbook.