Tag

prefetch

0 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.

InnoDBLRUMySQL
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.

CachingOptimizationPerformance
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.

PreconnectPreloadfrontend performance
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.

CachingPerformancePreload
0 likes · 12 min read
Optimizing iOS List Page Loading with Prefetch, Preload, and Cache Management
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.

Message QueueRabbitMQacknowledgment
0 likes · 10 min read
Ensuring Message Reliability and Consumer Acknowledgment in RabbitMQ
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.

PreloadWebpackbrowser 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 AckMessage QueueMultithreading
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.

JavaScriptfrontendprefetch
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 DevelopmentJavaScript OptimizationNetflix
0 likes · 11 min read
How Netflix Cut JavaScript and Used Prefetch to Reduce Interaction Time