I am currently using Express and its built-in router functionality to transmit data collected through a form to my MongoDB instance. I want to enhance my project by performing advanced data manipulation before it is stored in the Mongo database.
Considering that I aim for my project to handle 1,000-10,000 data collections and manipulations per second, I believe that conducting data manipulation on the server side with C would be the most efficient approach. However, I am uncertain about whether this is the optimal strategy and how I can transfer data from the front-end to the C program.
My initial investigation suggests that I could make an AJAX call to the C program; nevertheless, I haven't been able to find any information on processing received AJAX calls in C. Any guidance on the best way to tackle this issue would be immensely valuable!