サーバーは、Web ページの実行中に動的ファイルを書き込みます。実行の最後にファイルを消去します。
通常のシナリオ:
I. Load page
II. cgi calls bash script to do some backend stuff (takes a few
seconds, creates some tmp files)
III. bash script returns, and cgi removes the files at the end of execution
例外的なシナリオ:
I. Load page
II. cgi calls bash script to do some backend stuff (takes a few
seconds, creates some tmp files)
III. user clicks stop on browser, and the perl script terminates
IV. tmp files left on server :(
ブラウザからのシグナルを検出する方法があると確信しています(したがって、例外を処理します)が、私はWeb開発初心者であるため、何を検索すればよいかわかりません...