이 감사에서는 첫 번째 광고 요청이 긴 작업으로 인해 지연되고 있는지 여부를 확인합니다. 긴 작업은 기본 스레드를 50ms 이상 차단하는 자바스크립트 코드로 정의됩니다. 광고 요청 전에 긴 작업이 발생하면 브라우저에서 모든 작업이 완료될 때까지 요청을 실행할 수 없습니다.
권장사항
첫 번째 광고 요청을 차단하는 작업을 검토하고 이를 삭제하거나 실행 시간을 100ms 미만으로 줄이는 방법을 조사합니다. 실행 시간을 줄이는 몇 가지 방법은 다음과 같습니다.
더 빠르게 실행되도록 작업 최적화
작업을 각각 100ms 미만으로 실행되는 작은 청크로 분할
광고 요청이 이루어질 때까지 작업 지연하기
작업자를 통해 기본 스레드 외부로 작업 이동
추가 정보
이 감사는 실행 시간을 기준으로 가장 긴 작업 10개를 시작 시간별로 정렬하여 표시합니다 (오름차순).
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-06-26(UTC)"],[[["This audit identifies long-running JavaScript tasks (over 100ms) that delay the initial ad request, potentially impacting ad revenue."],["Optimizing, splitting, delaying, or offloading these tasks can improve ad loading times."],["The audit highlights the top 10 longest tasks based on their execution time to help pinpoint problem areas."],["Long tasks block the main thread, preventing the browser from sending the ad request until they complete."],["Addressing these tasks is crucial for ensuring timely ad delivery and a smoother user experience."]]],[]]