我正在尝试在 dolphindb 中重放函数来重放我的数据,以便进行一些回测。但是参数parallelLevel 不会影响它重放的速度。
n = 30000000
quotes = table(100:0, `date`time`sym, [DATE,MINUTE,INT])
tableInsert(quotes, take(2018.12.01,n),09:30m + 1..n, 1..n)
sch = select name,typeString as type from quotes.schema().colDefs
share streamTable(100:0, sch.name,sch.type) as outQuotes
timer replay([quotes],[`outQuotes], ,`time , ,1)
不管parallelLevel怎么设置,回放总是需要2.2秒左右,这是为什么呢?