如何最好地配置 JS 运行时?

发布于 2025-01-04 23:57:30 字数 130 浏览 1 评论 0原文

我想知道如何最好地配置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆橘 2025-01-11 23:57:30

默认选项应该可以正常工作,我只需确保启用了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文