Whatever message this page gives is out now! Go check it out!
load(), allowing the application to continue executing while loading occurs in the background.docService.loadAsync(config)config argument accepts the same keys as load(). See the load() reference for the full parameter list..get() blocks until loading completes and returns an Array of document Structs identical to the return value of load().future = docService.loadAsync({ path: "./large-corpus/", recursive: true });
// … do other work …
docs = future.get();