Background: I am trying to use python for sentiment analysis part in a .NET WebAPI application. (IronPython is not usable in this case as it's not having support for the libraries which are being used in these python scripts.)
Till now I have managed to use python using IPC, and calling the required scripts and getting the string results back into the .NET applications for further processing.
I also have successfully hosted this application in IIS using FastCGI.
My question is, What could be the challenges to use IPC in IIS for this approach, Like Performance, Security, Availability etc.? and what are the best practices for using IPC in IIS?