Tagged articles
17 articles
Page 1 of 1
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 24, 2024 · Backend Development

Common HTTP Request and Response Headers Explained

This article provides a comprehensive overview of common HTTP request and response headers, explaining their purposes, typical usage, and example syntax, helping developers prepare for interviews and deepen their understanding of web communication fundamentals.

BackendHTTPHeaders
0 likes · 9 min read
Common HTTP Request and Response Headers Explained
Laravel Tech Community
Laravel Tech Community
Mar 3, 2022 · Backend Development

PHP Request and Response Classes for CRUD Operations

This article explains how to implement a PHP Request class that handles CRUD operations based on HTTP methods, a Response class that formats output as JSON, XML, or HTML, and an index entry point that ties the two together for a simple API.

APIResponserequest
0 likes · 6 min read
PHP Request and Response Classes for CRUD Operations
FunTester
FunTester
Aug 11, 2021 · Fundamentals

Understanding HTTP Request and Response: A Study Note

This note provides a comprehensive overview of HTTP protocol, detailing request and response structures, including headers, body content, status codes, and common pitfalls, supplemented with illustrative screenshots and links for further reading.

Responserequestweb fundamentals
0 likes · 8 min read
Understanding HTTP Request and Response: A Study Note
21CTO
21CTO
Jun 3, 2021 · Backend Development

How to Prevent Duplicate Requests on the Server Using Redis and Request Hashing

This article explains how to handle duplicate user requests—especially write operations—by using unique request IDs with Redis, computing MD5 hashes of sorted JSON parameters, and providing a Java helper class to reliably deduplicate requests on the server side.

MD5deduplicationjava
0 likes · 8 min read
How to Prevent Duplicate Requests on the Server Using Redis and Request Hashing
FunTester
FunTester
Dec 26, 2019 · Backend Development

Deep‑Copying HttpRequestBase in Java: A Custom FunRequest Wrapper

This article explains why a separate HttpRequestBase object is needed for each concurrent request in a performance testing framework, and provides a complete Java implementation of a FunRequest class that offers deep‑copy, cloning, and fluent configuration of GET/POST HTTP requests.

BackendHttpClientcloning
0 likes · 8 min read
Deep‑Copying HttpRequestBase in Java: A Custom FunRequest Wrapper