hjoon0510 / SmartSecretary

:partly_sunny: [KOI 2018] SmartSecretary tells users current weather and important schedule in front of door as a secretary.
Other
2 stars 1 forks source link

[완료, 버그] ssmtp 발송하는 기능 늦어서 smart-secretary.php 로딩 지연 문제 해결하기 #10

Open hjoon0510 opened 6 years ago

hjoon0510 commented 6 years ago

ssmtp 발송하는 기능 늦어서 smart-secretary.php 로딩 지연 문제가 발생하고 있다. http://smartsecretary.mooo.com/webapge/smart-secretary.php 의 실행속도가 1초 이내에 완료할수 있는 방법을 알아 내어야 한다. 구글 검색을 하여 보자.

hjoon0510 commented 6 years ago

제안 아이디어

// Run a script asynchronously to avoid service timeout that is generated due to long build time.
// https://stackoverflow.com/questions/222414/asynchronous-shell-exec-in-php
// https://stackoverflow.com/questions/2368137/asynchronous-shell-commands
$cmd = "./ssmtp-send.sh $date $commit $repo $branch $pr_no $delivery_id > /dev/null 2>/dev/null &";
$result = shell_exec($cmd);
printf ("[DEBUG] checker: ssmtp-send.sh is done asynchronously. \n");