24 घंटे से भी कम समय पहले, मैंने क्लाउडफ़ेयर कैश का उपयोग करके अपनी वेबसाइट को तेज़ करने के तरीके के बारे में एक पोस्ट लिखी थी। हालाँकि, मैंने रेडिस का उपयोग करके अधिकांश तर्क को फास्टिफ़ाइ मिडलवेयर में स्थानांतरित कर दिया है। यहां बताया गया है कि आप इसे स्वयं क्यों और कैसे कर सकते हैं।
क्लाउडफ़ेयर कैश के साथ मुझे दो समस्याओं का सामना करना पड़ा:
कुछ अन्य समस्याएं थीं जिनका मुझे सामना करना पड़ा (जैसे पैटर्न मिलान का उपयोग करके कैश को शुद्ध करने में सक्षम नहीं होना), लेकिन वे मेरे उपयोग के मामले में महत्वपूर्ण नहीं थे।
इसलिए, मैंने Redis का उपयोग करके तर्क को फास्टिफ़ाइ मिडलवेयर में स्थानांतरित करने का निर्णय लिया।
[!टिप्पणी]
मैंने इमेज कैशिंग के लिए क्लाउडफ्लेयर कैश छोड़ा। इस मामले में, क्लाउडफ्लेयर कैश प्रभावी रूप से एक सीडीएन के रूप में कार्य करता है।
इसके बाद मिडलवेयर का एक एनोटेटेड संस्करण है जिसे मैंने फास्टिफ़ाइ का उपयोग करके कैश प्रतिक्रियाओं के लिए लिखा था।
const isCacheableRequest = (request: FastifyRequest): boolean => { // Do not attempt to use cache for authenticated visitors. if (request.visitor?.userAccount) { return false; } if (request.method !== 'GET') { return false; } // We only want to cache responses under /supplements/. if (!request.url.includes('/supplements/')) { return false; } // We provide a mechanism to bypass the cache. // This is necessary for implementing the "Serve Stale Content While Revalidating" feature. if (request.headers['cache-control'] === 'no-cache') { return false; } return true; }; const isCacheableResponse = (reply: FastifyReply): boolean => { if (reply.statusCode !== 200) { return false; } // We don't want to cache responses that are served from the cache. if (reply.getHeader('x-pillser-cache') === 'HIT') { return false; } // We only want to cache responses that are HTML. if (!reply.getHeader('content-type')?.toString().includes('text/html')) { return false; } return true; }; const generateRequestCacheKey = (request: FastifyRequest): string => { // We need to namespace the cache key to allow an easy purging of all the cache entries. return 'request:' generateHash({ algorithm: 'sha256', buffer: stringifyJson({ method: request.method, url: request.url, // This is used to cache viewport specific responses. viewportWidth: request.viewportWidth, }), encoding: 'hex', }); }; type CachedResponse = { body: string; headers: Record; statusCode: number; }; const refreshRequestCache = async (request: FastifyRequest) => { await got({ headers: { 'cache-control': 'no-cache', 'sec-ch-viewport-width': String(request.viewportWidth), 'user-agent': request.headers['user-agent'], }, method: 'GET', url: pathToAbsoluteUrl(request.originalUrl), }); }; app.addHook('onRequest', async (request, reply) => { if (!isCacheableRequest(request)) { return; } const cachedResponse = await redis.get(generateRequestCacheKey(request)); if (!cachedResponse) { return; } reply.header('x-pillser-cache', 'HIT'); const response: CachedResponse = parseJson(cachedResponse); reply.status(response.statusCode); reply.headers(response.headers); reply.send(response.body); reply.hijack(); setImmediate(() => { // After the response is sent, we send a request to refresh the cache in the background. // This effectively serves stale content while revalidating. // Therefore, this cache does not reduce the number of requests to the origin; // The goal is to reduce the response time for the user. refreshRequestCache(request); }); }); const readableToString = (readable: Readable): Promise => { const chunks: Uint8Array[] = []; return new Promise((resolve, reject) => { readable.on('data', (chunk) => chunks.push(Buffer.from(chunk))); readable.on('error', (err) => reject(err)); readable.on('end', () => resolve(Buffer.concat(chunks).toString('utf8'))); }); }; app.addHook('onSend', async (request, reply, payload) => { if (reply.hasHeader('x-pillser-cache')) { return payload; } if (!isCacheableRequest(request) || !isCacheableResponse(reply) || !(payload instanceof Readable)) { // Indicate that the response is not cacheable. reply.header('x-pillser-cache', 'DYNAMIC'); return payload; } const content = await readableToString(payload); const headers = omit(reply.getHeaders(), [ 'content-length', 'set-cookie', 'x-pillser-cache', ]) as Record ; reply.header('x-pillser-cache', 'MISS'); await redis.setex( generateRequestCacheKey(request), getDuration('1 day', 'seconds'), stringifyJson({ body: content, headers, statusCode: reply.statusCode, } satisfies CachedResponse), ); return content; });
टिप्पणियाँ कोड के माध्यम से चलती हैं, लेकिन यहां कुछ मुख्य बिंदु हैं:
मैंने कई स्थानों से विलंबता परीक्षण चलाया और प्रत्येक यूआरएल के लिए सबसे धीमी प्रतिक्रिया समय कैप्चर किया। परिणाम नीचे हैं:
यूआरएल | देश | उत्पत्ति प्रतिक्रिया समय | क्लाउडफ्लेयर कैश्ड रिस्पांस टाइम | कैश्ड प्रतिक्रिया समय को तेज़ करें |
---|---|---|---|---|
https://pillser.com/vitamins/vitamin-b1 | हमें-पश्चिम1 | 240 एमएस | 16 एमएस | 40 एमएस |
https://pillser.com/vitamins/vitamin-b1 | यूरोप-पश्चिम3 | 320 एमएस | 10 एमएस | 110 एमएस |
https://pillser.com/vitamins/vitamin-b1 | ऑस्ट्रेलिया-दक्षिणपूर्व1 | 362 एमएस | 16 एमएस | 192 एमएस |
https://pillser.com/supplements/vitamin-b1-3254 | हमें-पश्चिम1 | 280 एमएस | 10 एमएस | 38 एमएस |
https://pillser.com/supplements/vitamin-b1-3254 | यूरोप-पश्चिम3 | 340 एमएस | 12 एमएस | 141 एमएस |
https://pillser.com/supplements/vitamin-b1-3254 | ऑस्ट्रेलिया-दक्षिणपूर्व1 | 362 एमएस | 14 एमएस | 183ms |
क्लाउडफ्लेयर कैश की तुलना में, फास्टिफाई कैश धीमा है। ऐसा इसलिए है क्योंकि कैश्ड सामग्री अभी भी मूल से परोसी जाती है, जबकि क्लाउडफ़ेयर कैश क्षेत्रीय किनारे के स्थानों से परोसी जाती है। हालाँकि, मैंने पाया कि अच्छा उपयोगकर्ता अनुभव प्राप्त करने के लिए ये प्रतिक्रिया समय काफी हैं।
अस्वीकरण: उपलब्ध कराए गए सभी संसाधन आंशिक रूप से इंटरनेट से हैं। यदि आपके कॉपीराइट या अन्य अधिकारों और हितों का कोई उल्लंघन होता है, तो कृपया विस्तृत कारण बताएं और कॉपीराइट या अधिकारों और हितों का प्रमाण प्रदान करें और फिर इसे ईमेल पर भेजें: [email protected] हम इसे आपके लिए यथाशीघ्र संभालेंगे।
Copyright© 2022 湘ICP备2022001581号-3