gpt4 book ai didi

Dart 隔离对共享对象实例的访问

转载 作者:行者123 更新时间:2023-12-02 01:48:29 24 4
gpt4 key购买 nike

我目前正在使用isolate 将查询并行发送到数据库服务器。我有一个连接器对象来构建与数据库的连接,我想在所有隔离之间共享该连接,因此我不必为每个隔离创建单独的连接。

到目前为止,我似乎只能在隔离之间共享特殊的可序列化对象。我正在使用发送和接收端口进行消息传递。对于其他对象(例如我的连接器对象),dart-vm 会产生错误:

Illegal argument(s): Illegal argument in isolate message : (object extends NativeWrapper)

您知道有什么方法可以在多个隔离之间共享通用对象实例吗?或者我是否必须为每个隔离创建一个单独的实例?

谢谢!

佩德罗

最佳答案

来自 SendPort.send 方法代码文档

   * In the special circumstances when two isolates share the same code and are
* running in the same process (e.g. isolates created via [Isolate.spawn]), it
* is also possible to send object instances (which would be copied in the
* process). This is currently only supported by the dartvm. For now, the
* dart2js compiler only supports the restricted messages described above.

我假设作为 native 对象包装器的对象也不受支持。
目前看来唯一的方法是在每个隔离中创建一个新连接。

这些价​​值观始终有效

   * The content of [message] can be: primitive values (null, num, bool, double,
* String), instances of [SendPort], and lists and maps whose elements are any
* of these. List and maps are also allowed to be cyclic.

关于Dart 隔离对共享对象实例的访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25453088/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com