Stackless Python 中的 Tasklet 本地存储
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案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.