如何将 MojoX::Redis 结果分配给变量?
我尝试使用 MojoX::Redis ,但我无法理解如何捕获结果产生一个变量。
在文档中使用“print”
$redis->get(key => sub {
my ($redis, $res) = @_;
print "Value of ' key ' is $res->[0]\n";
})
它有效,但没用。 如何将结果分配给“主”程序中的变量?
附言。事实上,我真的不理解这部分的异步范例。
I try to work with MojoX::Redis and I can`t understand how catch result in a variable.
In docs used "print"
$redis->get(key => sub {
my ($redis, $res) = @_;
print "Value of ' key ' is $res->[0]\n";
})
It worked, but useless.
How I can assign result to a variable in "main" program?
PS. Indeed I really don`t understand asynchronous paradigm on this part.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当请求的数据到达时,子函数被调用。您可以从外部关闭变量周围的匿名子以对其进行分配。
但要注意该变量是异步填充的,因此它不会立即可用。也许最好的方法是在匿名子进程中处理结果。
The sub is called when requested data arrives. You can close anonymous sub around variable from the outside to get it assigned.
But pay attention to that variable is filled asynchronously, so it will not be immediately available. Probably best approach is to process result within the anonymous sub.
我咨询了作者,他给了我下一个解决方案:
gist 中的全文
我想没有新的 ioloop Redis 是“位于 Mojolicious 循环上并仅在最后接收数据。
I consult with author and he give me next solution :
full text in gist
I suppose without new ioloop Redis is "sited" on Mojolicious loop and receive data at the end only.