Stackless Python 中的 Tasklet 本地存储

发布于 2024-11-10 11:08:25 字数 210 浏览 0 评论 0原文

我从 Stackless Python 开始,所以这对我来说是一个全新的奇妙世界。 我通常使用常规线程,它们通常具有线程本地存储(TLS), 当您不需要与其他线程共享内存时,这是一个非常有用的功能。

所以,我想知道 Stackless Python 是否有类似的东西:一种存储本地内存的方法 (一个Python对象)对于给定的tasklet。这可能吗?

提前致谢。 -f

I'm starting with Stackless Python so it's a whole new amazing world for me.
I usually use regular threads, and they normally have Thread-local storage (TLS), which
is a very useful feature when you need NOT share memory with other threads.

So, I'm wondering if Stackless Python has something similar: A way to store local memory
(a python object) for a given tasklet. Is that possible?

Thanks in advance.
-f

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

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

发布评论

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

评论(1

恋竹姑娘 2024-11-17 11:08:25

解决方案1:可以使用通过调用 stackless.getcurrent() 检索的当前 tasklet 对象在 stackless/greenlet 中模拟 TLS,以存储其他数据。

解决方案2:如果tasklet不支持添加额外字段,那么您可以使用全局 WeakKeyDictionary 实例,该实例将作为微线程的弱引用键,值代表您的 TLS。

Solution1: The TLS can be simulated in stackless/greenlet using the current tasklet object, retrieved by the call of stackless.getcurrent(), to store additional data.

Solution2: If the tasklet didn't support to add extra fields, than you can have a global WeakKeyDictionary instance that will have as weakref key the tasklet, and value represents your TLS.

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