Heterogeneity interpreter integration: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
No edit summary
Tags: Mobile edit Mobile web edit
No edit summary
Line 21: Line 21:
Related articles
Related articles
* [https://stackoverflow.com/questions/27863484/run-python-script-from-php-save-process-pid-and-dont-wait-it-to-finish Run Python script from php, save process pid, and don't wait it to finish - Stack Overflow] ''un-verified''
* [https://stackoverflow.com/questions/27863484/run-python-script-from-php-save-process-pid-and-dont-wait-it-to-finish Run Python script from php, save process pid, and don't wait it to finish - Stack Overflow] ''un-verified''
* [https://support.microsoft.com/en-us/help/830473/command-prompt-cmd--exe-command-line-string-limitation Command prompt (Cmd. exe) command-line string limitation] when error message 'The command line is too long.' met on windows.


[[Category:Programming]] [[Category:PHP]] [[Category:Python]]
[[Category:Programming]] [[Category:PHP]] [[Category:Python]]

Revision as of 12:03, 4 January 2018

Considerations of multi-languages Interpreter integration

Input / Output

  • ill-formed input and output

Unexpected conditions / errors

  • Entry point
    • Browser timeout/crash
  • Interpreter level
    • First interpreter timeout/crash: e.g. First interpreter (.PHP) is timeout but second interpreter (.PY) is still running.
    • Second interpreter timeout/crash
  • System level
    • e.g. memory error caused by second interpreter
  • API level

References

Related articles