Tag

Resumable

0 views collected around this technical thread.

IT Services Circle
IT Services Circle
May 19, 2023 · Frontend Development

What Is Resumable Rendering and How It Differs from Hydration and React Server Components

The article explains the Resumable rendering concept introduced by Miško Hevery, contrasts it with traditional SSR hydration, details its implementation in the Qwik framework, compares it to React Server Components, and discusses why React has not adopted this approach despite its performance benefits.

FrontendPerformanceQwik
0 likes · 11 min read
What Is Resumable Rendering and How It Differs from Hydration and React Server Components
Watermelon Frontend Tech Team
Watermelon Frontend Tech Team
Nov 24, 2022 · Frontend Development

Why Qwik’s Resumable Architecture Beats Traditional Hydration

This article explains how Qwik, a full‑stack SSR framework, uses pre‑compilation, resumable rendering, and fine‑grained event handling to avoid the heavy runtime and hydration overhead of traditional Virtual DOM frameworks, offering superior first‑paint performance and lower JavaScript payloads.

FrontendPerformanceQwik
0 likes · 20 min read
Why Qwik’s Resumable Architecture Beats Traditional Hydration
Top Architect
Top Architect
Nov 21, 2022 · Backend Development

Implementing Chunked, Instant, and Resumable File Uploads in a Java Backend

This article explains how to design and implement instant (秒传), chunked (分片上传), and resumable (断点续传) file upload mechanisms in Java, covering the underlying MD5 deduplication logic, Redis state tracking, server‑side file handling with RandomAccessFile and MappedByteBuffer, and practical deployment considerations.

File UploadJavaRedis
0 likes · 16 min read
Implementing Chunked, Instant, and Resumable File Uploads in a Java Backend