gpt4 book ai didi

go - 是否有与 Perl6 中的 Go goroutines 等效的东西?

转载 作者:IT王子 更新时间:2023-10-29 00:59:16 26 4
gpt4 key购买 nike

我看到了

perl6 -e '@r = do for ^500 {start { .say; sleep 3 }}; await @r'

在我的系统上创建了大约一打 moar 线程并将它们用作 promise 池,但我想像在 Go 中一样同时启动它们。这可能吗?

最佳答案

据我了解,goroutines 是一个非常低级的结构。
Perl 中的大多数东西都不是很低级。

最接近你认为你想要的可能是直接使用Threads .

my @r = do for ^100 { # currently aborts if it's much over 100
Thread.start: { .say; sleep 3 };
}

# The implementation may actually create several threads
# for this construct
@r>>.finish;

我强烈建议您不要这样做,因为它不是很可组合。


如果你想在等待 3 秒后打印出数字,我会使用 Promise.in 方法。返回 Promise将保留那么多秒。
此示例似乎几乎同时创建了 500 个线程,但实际上可能不会启动任何其他线程。

my @r = (^500).map: {
Promise.in(3).then: -> $ { .say }
}
await @r;

Perl 6 也有 SuppliesChannels

# get three events fired each second
my $supply = Supply.interval: 1/3;

react {
# not guaranteed to run in order.
whenever $supply.grep(* %% 3) { print 'Fizz' }
whenever $supply.grep(* %% 5) { print 'Buzz' }

whenever $supply {
sleep 1/10; # fudge the timing a little
.put
}

whenever Promise.in(10) {
say 'ten seconds have elapsed';
done
}
}

一般来说,异步结构的设计是为了隐藏一些你必须用线程处理的更复杂的事情。

事实上,使用线程最简单的方法之一可能就是添加 hyperracemap 之前或 grep方法调用:

my @r = (^50).hyper( :batch(5), :degree(10) ).map: { .say; sleep 1 }
# use `race` instead of `hyper` if you don't
# care about the order of @r

关于go - 是否有与 Perl6 中的 Go goroutines 等效的东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31927114/

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