I have a node.js
web application and I want to be able to convert many documents (in the same time) to PDF
. In this moment I use libreoffice
with a queue (The purpose of queue is to avoid infinite conversion for a file - if libreoffice
cannot convert the file in a specific period of time then I kill the process). The problem is that if I have two users which upload files and both of them upload big files the second user must wait for the first one to finish.
Is there any way to convert the files simultaneously?
I am willing to replace libreoffice
with another PDF converter.
Thank you in advance.