I have a perl app which processes text files from the local filesystem (think about it as an overly-complicated grep). I want to design a webapp which allows remote users to invoke the perl app by setting the required parameters. Once it's running it would be desirable some sort of communication between the perl app and the webapp about the status of the process (running, % done, finished). Which would be a recommended way of communication between the two processes? I was thinking in a database table, but I'm not really sure it's a good idea.
any suggestions are appreciated.