ChatGPT pode substituir stackoverflow? Ou ao menos agilizar o processo de buscar respostas para nossas dúvidas?
Hoje conversei um pouco com o ChatGPT e como programador resolvi fazer algumas perguntas sobre o tema ate que lembrei de uma pergunta que fiz no stackoverflow muito tempo atrás por conta de um problema que eu estava tendo no meu projeto NodeJs, vou deixar aqui alguns prints de minhas perguntas e as respostas dela para analisarem e deixarem sua opinião.
1ª questão: is possible to make a file upload in nodejs with express without blocking my event loop and blocking request from other users?
R:
2ª questão: when i make a file upload in nodejs with multer, my event loop getting blocked and other requests from others users is getting longer to process, how can i fix it?
R:
3ª questão: how can i create a file upload in nodejs with multer and child_process library to handle the upload in a separated process?
R:
4ª questão: how many child processes child_process library can create? For example in a scenario where 100 users are making a file upload to the route that u created above and each file having 5MB. Will all users have the file uploaded in the same time or the first ones will finish before?
R: