我构建了R Shiny应用程序,在其中我大量使用reactiveFileReader()
从文件中读取保存的数据。我注意到一段时间后,服务器变得非常缓慢。经过研究后,我发现GitHub问题说这可能是由memory leak引起的。
using fastmap as a backing store for map class解决了该问题。
但是,我还不清楚如何在reactiveFileReader()
中使用fastmap。
由于我目前每天通过cron每天重启服务器5次而幸免于难,因此非常感谢有关如何在reactFileFileer中使用fastmap或任何其他方法来避免内存泄漏的帮助。
谢谢。
答案 0 :(得分:0)
似乎已将char* test(int index, char** char2Darray)
{
return char2Darray[index];
}
int main()
{
char* tab[2] ={
"Yo",
"Hi"};
test(1, tab);
return (0);
}
软件包更新为1.4.0版本
https://github.com/rstudio/shiny/issues/2321#issuecomment-542078052