Whatever message this page gives is out now! Go check it out!
docService.lazyLoad(config)config argument accepts the same keys as load(). See the load() reference for the full parameter list.hasNext(): Returns true if more documents are available.next(): Returns the next document Struct (with text and metadata).iter = docService.lazyLoad({ path: "./large-docs/", recursive: true });
while (iter.hasNext()) {
doc = iter.next();
writeOutput("Processing: #doc.metadata.source#<br>");
}