I currently have a site running on IIS 7.0 (and 6.0 in some places) that uses a PERL script in between the browser and the program that runs in the background. I am using Activestate perl.
When a web request is made, a PERL job is spawned, then when my background program runs, it also spawns a job, the background program ends, then the perl job ends with the results sent to the browser. This is not PHP.
I want to try an speed up the process and was looking into whether FastCGI would be an answer where I would not spawn a new job for each PERL run . All the posts/installs I have seen have more to do with PHP..
My questions, is FastCGI something I can use for this purpose?