我正在尝试进行反应,但是出现了这个错误:
致命错误:CALL_AND_RETRY_LAST分配失败-Javascript堆内存不足。
我一直遵循此安装指南 https://docs.reactioncommerce.com/docs/next/installation-windows
然后我开始执行反应:
template<int i = 1>
auto a() { return i; }
// auto a() -> int { return i; }
// if the return type is specified, c can be defined as commented below
template<int i = 2>
auto b = a<i>;
// auto c = a; <-- error: unable to deduce 'auto' from 'a'
auto c = a<>;
int main() {
a();
// b(); <-- error: missing template arguments before '(' token
b<>();
c();
}
但是我遇到了这个错误
# start Reaction
reaction
# or
reaction run
我不知道如何增加内存,以及是否必须在节点或流星中增加内存。
谢谢。