Conduit insert with batch of documents in db
For now, it seems the backend is inserting all documents provided by the API crawl/search, it should be inserted progressively in db:
ids <- runConduit $ zipSources (yieldMany [1..]) docsC .| mapMC insertDoc .| sinkList
it is inserting [Documents], it should be [[Documents]] instead to insert progressively documents after each batch of documents from the API