ऐसे लंबे टास्क से बचें जो विज्ञापन से जुड़े नेटवर्क के अनुरोधों को ब्लॉक करते हैं
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
खास जानकारी
इस ऑडिट में यह जांच की जाती है कि लंबे टास्क की वजह से पहले विज्ञापन अनुरोध में देरी हो रही है या नहीं. लंबे टास्क को JavaScript कोड के तौर पर बताया जाता है, जो मुख्य थ्रेड को 50 मि॰से॰ या उससे ज़्यादा समय के लिए ब्लॉक करता है. अगर विज्ञापन अनुरोध से पहले लंबे टास्क होते हैं, तो ब्राउज़र तब तक अनुरोध जारी नहीं कर पाएगा, जब तक सभी टास्क पूरे नहीं हो जाते.
सुझाव
उन टास्क की जांच करें जो पहले विज्ञापन अनुरोध को ब्लॉक कर रहे हैं. साथ ही, उन्हें हटाने या 100 मि॰से॰ से कम समय में इन्हें हटाने के तरीकों की जांच करें. प्रोग्राम चलाने में लगने वाले समय को कम करने के कुछ तरीके ये हैं:
तेज़ी से लागू करने के लिए, टास्क को ऑप्टिमाइज़ करना
टास्क को छोटे-छोटे हिस्सों में बांटा जा रहा है, जो 100 मि॰से॰ से कम समय में पूरे होते हैं
विज्ञापन के अनुरोध मिलने तक, टास्क को टाला जा रहा है
वर्कर के ज़रिए, टास्क को मुख्य थ्रेड से बाहर ले जाना
ज़्यादा जानकारी
यह ऑडिट पूरा होने के समय के हिसाब से, सबसे लंबे 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"]],["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eThis audit identifies long-running JavaScript tasks (over 100ms) that delay the initial ad request, potentially impacting ad revenue.\u003c/p\u003e\n"],["\u003cp\u003eOptimizing, splitting, delaying, or offloading these tasks can improve ad loading times.\u003c/p\u003e\n"],["\u003cp\u003eThe audit highlights the top 10 longest tasks based on their execution time to help pinpoint problem areas.\u003c/p\u003e\n"],["\u003cp\u003eLong tasks block the main thread, preventing the browser from sending the ad request until they complete.\u003c/p\u003e\n"],["\u003cp\u003eAddressing these tasks is crucial for ensuring timely ad delivery and a smoother user experience.\u003c/p\u003e\n"]]],["This audit identifies long JavaScript tasks (100ms+) that delay the initial ad request. These tasks block the main thread, preventing the browser from issuing the request. The audit recommends reducing these tasks by optimizing, splitting them into smaller chunks, delaying their execution until after ad requests, or moving them off the main thread. The top ten longest tasks, sorted by start time, are displayed.\n"],null,[]]