概述
我正在编写一个程序(在 R 中),它在某些指定时间进行 API 调用。API 调用需要一段时间,但我需要计时器(主循环)在进行 API 调用时继续计数。为此,我需要将 API 调用“外包”给另一个 CPU 线程。我相信这是可能的,并且已经研究了future
和promises
包,但还没有找到解决方案。
可重现的例子
让我们运行一个for
从 0 计数到 100 的循环。当计数器 ( i
) 达到 50 时,它必须完成一个资源密集型过程(调用函数sampler
,该函数对 100 万个正态分布进行 10,000 次采样以占用计算空间)。sampler()
希望计数器在另一个线程上工作时继续计数。
#Something to take up computation space
sampler <- function(){
for(s in 1:10000) sample(1000000)
}
#Get this counter to continue while sampler() runs on another thread
for(i in 1:100){
message(i)
if(i == 50){
sampler()
}
}
我尝试过的(不成功)
library(future)
sampler <- function(){
for(s in 1:10000) sample(1000000)
}
for(i in 1:100){
message(i)
if(i == 50){
mySamples <- future({ sampler() }) %plan% multiprocess
}
}