JavaScript 中的繁重计算

发布于 2024-12-11 04:49:15 字数 396 浏览 0 评论 0原文

我目前正在为 Javascript(浏览器和节点)构建一个财务库,

该库的主要功能之一是使用选项进行模拟,因此生成模拟需要进行大量计算。

我目前正在使用我编写的一个名为 AsyncManager 的库,它使用 HTML5 webworkers(node-webworker) 并在一定数量的 webworkers 之间分配计算。我这样做的方式是通过序列化 javascript 计算对象(Calc 对象必须实现一种名为calculate(args) 的方法),包括函数。

(我通过将函数更改为自身的字符串形式来进行函数序列化,然后在 webworker 中对它们进行评估,将它们转回函数。)

我想知道是否有人想到了一种更好的方法来使用 webworker 在 javascript 中分配负载事先不知道计算结果。

I am currently in the process of building a Finance library for Javascript(Browser and Node)

One of the main features of the library is doing simulations with options, therefore there is a lot of computation that goes into generating the simulations.

I am currently using a library I wrote called AsyncManager which uses HTML5 webworkers(node-webworker) and distributes calculations across a certain number of webworkers. The way I am doing this is by serializing the javascript calculation objects(Calc objects have to implement one method called calculate(args)) including the functions.

(I do the function serialization by changing the functions into the string form of themselves and then I eval them in the webworker to turn them back into functions.)

I was wondering if anyone had thought of a better way to distribute load in javascript using webworkers without knowing the computation ahead of time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文