enables/disables distributed parsing (rows are parsed portion by portion with some timeout)
mode | boolean | true/false |
count | number | count of nodes parsed by a step (optional, 10 by default) |
time | number | time between parsing counts in milliseconds (optional, 250 by default) |
Available only in PRO Edition
//enable distributed parsing mode
myGrid.enableDistributedParsing(true);
//enable distributed parsing mode, parse 50 nodes by one step,
//parse nodes with a 2 seconds delay
myGrid.enableDistributedParsing(true,50,2000);
Back to top