Tag

prefetch

1 views collected around this technical thread.

Lobster Programming
Lobster Programming
Aug 14, 2024 · Databases

How MySQL InnoDB’s Prefetch and LRU Buffer Pool Boost Query Performance

This article explains MySQL InnoDB’s linear and random prefetch mechanisms, the role of the innodb_read_ahead_threshold and innodb_random_read_ahead variables, and how the LRU buffer‑pool list manages hot and cold pages to improve overall query efficiency.

Buffer PoolInnoDBLRU
0 likes · 6 min read
How MySQL InnoDB’s Prefetch and LRU Buffer Pool Boost Query Performance
Bilibili Tech
Bilibili Tech
Oct 25, 2023 · Backend Development

Performance Optimization Practices in Bilibili's Risk Control Engine

To overcome storage, compute, and I/O bottlenecks in Bilibili’s risk‑control engine, the team combined pre‑fetching with Redis caching, batch retrieval, asynchronous writes via Railgun, aggressive log compression, and a multi‑level cache plus Bloom filter, cutting latency to sub‑100 ms, reducing Redis QPS by over 90 % and storage by ~38 %, while supporting million‑level query throughput.

AsyncBatch ProcessingPerformance
0 likes · 22 min read
Performance Optimization Practices in Bilibili's Risk Control Engine
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Sep 9, 2023 · Frontend Development

Using Resource Hints (Prefetch, Preload, Preconnect, DNS‑Prefetch) to Optimize Frontend Loading Performance

This article explains how to use the four resource‑hint APIs—prefetch, preload, preconnect, and DNS‑prefetch—along with the crossorigin attribute and a custom npm tool (resource‑hint‑generator) to dramatically reduce page load times, improve web‑vitals, and increase cache‑hit rates, providing code examples, tables, and validation steps.

Preconnectfrontend performancenpm
0 likes · 17 min read
Using Resource Hints (Prefetch, Preload, Preconnect, DNS‑Prefetch) to Optimize Frontend Loading Performance
Sohu Tech Products
Sohu Tech Products
Apr 6, 2023 · Mobile Development

Optimizing iOS List Page Loading with Prefetch, Preload, and Cache Management

The article explains how to improve slow iOS list pages by using prefetch and preload techniques, caching network responses, handling new‑user scenarios, and implementing a hash‑based cache‑validation system to minimize unnecessary reloads and boost rendering performance.

PerformanceSwiftcaching
0 likes · 12 min read
Optimizing iOS List Page Loading with Prefetch, Preload, and Cache Management
WecTeam
WecTeam
May 13, 2022 · Frontend Development

Top Frontend Picks: Prefetch‑Powered H5 Offline Packages, 2022 React Ecosystem, and React 18 Transition Deep Dive

This week’s WecTeam Frontend Weekly highlights a prefetch‑driven H5 offline‑package strategy for the Jingxi app, a comprehensive review of the 2022 React ecosystem, and an in‑depth look at React 18’s Transition API, offering practical insights to boost web performance and developer productivity.

FrontendReactoffline package
0 likes · 3 min read
Top Frontend Picks: Prefetch‑Powered H5 Offline Packages, 2022 React Ecosystem, and React 18 Transition Deep Dive
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
Jan 20, 2022 · Frontend Development

How Remix Implements Smart Prefetching to Boost Frontend Performance

This article explains how Remix, a full‑stack web framework, uses Link component state and the PrefetchPageLinks component to preload data, modules, and CSS, reducing loading spinners and improving user experience through parallel server‑side loading and nested route optimization.

FrontendRemixlink
0 likes · 10 min read
How Remix Implements Smart Prefetching to Boost Frontend Performance
Selected Java Interview Questions
Selected Java Interview Questions
Nov 11, 2021 · Backend Development

Ensuring Message Reliability and Consumer Acknowledgment in RabbitMQ

This article explains how to configure durable queues and persistent messages in RabbitMQ, avoid message loss when producers or consumers crash, use manual acknowledgments and NACK handling, and control unacknowledged message flow with prefetch settings for high‑throughput backend systems.

JavaRabbitMQacknowledgment
0 likes · 10 min read
Ensuring Message Reliability and Consumer Acknowledgment in RabbitMQ
Taobao Frontend Technology
Taobao Frontend Technology
Jun 2, 2021 · Frontend Development

How We Cut Landing Page Load Time to Sub‑Second on Low‑End Devices

This article details a comprehensive performance overhaul of a Taobao acquisition page—targeting low‑end phones and unstable networks—by centralizing APIs, prefetching data, and deploying static SSR, ultimately reducing first‑screen render time from several seconds to under one second.

SSRfrontend performancelanding page optimization
0 likes · 11 min read
How We Cut Landing Page Load Time to Sub‑Second on Low‑End Devices
vivo Internet Technology
vivo Internet Technology
Oct 22, 2020 · Frontend Development

Optimizing Front‑End Resource Loading with preload and prefetch

The article explains how to improve front‑end performance by using the browser hints preload and prefetch—preload for critical resources like fonts, prefetch for resources needed later—showing practical examples, webpack automation, best‑practice guidelines, and common pitfalls to avoid.

FrontendWebpackbrowser caching
0 likes · 14 min read
Optimizing Front‑End Resource Loading with preload and prefetch
Architect
Architect
Jun 14, 2020 · Backend Development

Practices for Improving RabbitMQ Consumption Speed

This article explains several techniques to boost RabbitMQ consumption speed, including adding more consumers, tuning the prefetch count, employing multithreaded processing, and using batch acknowledgments, while discussing related challenges such as backend capacity, concurrency conflicts, and message ordering.

Batch AckRabbitMQconsumer scaling
0 likes · 10 min read
Practices for Improving RabbitMQ Consumption Speed
Refining Core Development Skills
Refining Core Development Skills
Sep 26, 2019 · Fundamentals

Understanding Memory Speed, Core Frequency, and Latency Across DDR Generations

The article explains the evolution of DDR memory specifications, distinguishes between advertised Speed (effective frequency) and the underlying core frequency, shows how prefetch and bank‑group techniques amplify performance, and discusses why latency appears to increase despite higher nominal speeds.

Core FrequencyDDRHardware fundamentals
0 likes · 9 min read
Understanding Memory Speed, Core Frequency, and Latency Across DDR Generations
Qunar Tech Salon
Qunar Tech Salon
Aug 7, 2019 · Mobile Development

Performance Optimization of Baidu App Landing Page: Hybrid Architecture, Backend Direct Output, Prefetch and Interception

This article details how Baidu App reduced the landing‑page first‑screen load from over 2600 ms to under 2000 ms by analyzing user feedback, instrumenting each loading stage of its Hybrid H5 solution, and applying a series of backend‑direct‑output, prefetch, WebView pre‑creation, lazy‑load and kernel‑level rendering optimizations together with code‑level fixes.

AndroidBackend RenderingHybrid
0 likes · 18 min read
Performance Optimization of Baidu App Landing Page: Hybrid Architecture, Backend Direct Output, Prefetch and Interception
UC Tech Team
UC Tech Team
Dec 13, 2018 · Frontend Development

Quicklink: Prefetching Visible Links to Accelerate Page Load

Quicklink is a lightweight JavaScript library that detects links in the viewport and prefetches them during browser idle time, using Intersection Observer and requestIdleCallback, to significantly speed up subsequent navigation while keeping the bundle under 1 KB gzipped.

FrontendJavaScriptProgressive Enhancement
0 likes · 6 min read
Quicklink: Prefetching Visible Links to Accelerate Page Load
UC Tech Team
UC Tech Team
Nov 15, 2018 · Frontend Development

How Netflix Cut JavaScript and Used Prefetch to Reduce Interaction Time

Netflix improved the registration experience on its desktop site by replacing most React code with native JavaScript, reducing bundle size by over 200 KB and cutting interaction time by more than 50 %, while prefetching resources to further shrink time‑to‑interactive by 30 %.

Frontend DevelopmentNetflixReact
0 likes · 11 min read
How Netflix Cut JavaScript and Used Prefetch to Reduce Interaction Time
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
Feb 13, 2018 · Frontend Development

Mastering preload: Boost Web Performance and Avoid Common Pitfalls

This article explains how to use the HTML preload attribute, distinguishes it from prefetch, shows how to detect browser support, outlines resource‑loading priority rules, and provides practical tips to avoid misuse and improve first‑paint performance.

Frontendbrowserprefetch
0 likes · 7 min read
Mastering preload: Boost Web Performance and Avoid Common Pitfalls