gpt4 book ai didi

javascript - 使用 continuation-local-storage 时如何解决 promise ?

转载 作者:行者123 更新时间:2023-12-03 10:03:29 26 4
gpt4 key购买 nike

continuation-local-storage 似乎被使用,也在 express 的上下文中。

然而,非常基本的用法对我不起作用,因为上下文完全丢失了!

var createNamespace = require('continuation-local-storage').createNamespace;
var session = createNamespace('my session');


async function doAsync() {
console.log('Before getting into the promise: ' + session.get('test'));
await Promise.resolve();
console.log('*in* the promise: ' + session.get('test'));
}

session.run(() => {
session.set('test', 'peekaboo');
doAsync();
});

结果是:
$ node server_test.js 
Before getting into the promise: peekaboo
*in* the promise: undefined

我做错了什么还是 CLS 完全坏了?
还是图书馆坏了?
如果它不打算与 Promise 一起使用,是否还有其他概念可以作为 threadLocal 存储以正确的方式实现 Multi-Tenancy ?

最佳答案

cls-hooked似乎工作正常,尽管图书馆(如前一个)是两年前最后一次更新的......

如果有人有其他更强大的方法来实现 Multi-Tenancy 的线程本地状态,请分享!

关于javascript - 使用 continuation-local-storage 时如何解决 promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56750410/

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