Introduction to HTTP/2 Header Compression Technology

Introduction to HTTP/2 Header Compression Technology

(Click the public account above to quickly follow) Source: Author of Bole Online Column – JerryQu Link: http://web.jobbole.com/85635/ Click → Learn how to join as a column author We know that the HTTP/2 protocol consists of two RFCs: one is RFC 7540, which describes the HTTP/2 protocol itself; the other is RFC 7541, which describes … Read more

In-Depth Analysis of HTTP Protocol Evolution: The Performance Revolution from 1.0 to 2.0

In-Depth Analysis of HTTP Protocol Evolution: The Performance Revolution from 1.0 to 2.0 Introduction: The Protocol Layer Revolution in Web Performance Optimization The evolution of the HTTP protocol is the core driving force behind modern web performance optimization. Understanding the transformation from HTTP/1.0 to HTTP/2.0 is not only about technical details but also relates to … Read more

A Brief Analysis of the HTTP Protocol for Frontend Developers

Unfortunately, I have been busy with my wedding recently, and I cannot guarantee timely updates on WeChat during this period. Updates will be irregular until after the New Year. If you have any issues, please leave a message, and I will respond when I see it. Thank you all for your support. Introduction HTTP (Hypertext … Read more

HTTPX: A Modern HTTP Request Library for Python with Asynchronous Support

1. Introduction to the Library In today’s rapidly evolving internet applications, high-performance HTTP clients have become a core requirement for modern Python development. Traditional synchronous request libraries face performance bottlenecks when handling a large number of concurrent requests, while HTTPX, as a next-generation HTTP client in the Python ecosystem, perfectly addresses this challenge. HTTPX not … Read more

Understanding gRPC and HTTP/2

Traditional RPC Solutions: JSON + HTTP 1.x TCP + Custom Protocol Limitations Method Limitations HTTP/1.x + JSON Single connection order calls, frequent connection establishment incurs high overhead;Large JSON payloads, slow parsing; not suitable for streaming communication;Manual SDK writing required for multi-language calls or handling compatibility TCP Custom Protocol Packet sticking, unpacking, message boundaries, and concurrency … Read more

Analysis of the Advantages of the HTTP/2 Protocol

Analysis of the Advantages of the HTTP/2 Protocol

Author | wanago Translator | Xiaodafei Editor | Yonie The HTTP protocol was introduced in 1991 and has been around for nearly 30 years. Since the first documented version (later known as 0.9), it has undergone a significant evolution. In this article, we will briefly review the history of the HTTP protocol, highlight what HTTP/2 … Read more

Security Observations on Educational Networks: Universities Must Beware of Vulnerabilities in the HTTP/2 Protocol

Security Observations on Educational Networks: Universities Must Beware of Vulnerabilities in the HTTP/2 Protocol

AI technology is changing the patterns of cyber attacks. Cybersecurity company ESET has announced the detection of the world’s first AI-driven ransomware “PromptLock,” which utilizes the Ollama API to locally invoke OpenAI’s gpt-oss:20b model, generating and executing malicious Lua scripts in real-time to bypass traditional antivirus signature detection methods. Another security company, Kaspersky, has also … Read more

x-cmd pkg | oha – HTTP Load Testing Tool with a Graphical Interface for Easy Performance Analysis

x-cmd pkg | oha - HTTP Load Testing Tool with a Graphical Interface for Easy Performance Analysis

Please clickabove oh my x to follow this public accountIntroductionoha is a lightweight program designed to send load to web applications and features a real-time TUI inspired by rakyll/hey.This program is written in Rust, powered by tokio, and utilizes the beautiful TUI provided by ratatui.First-time UsersThis article demonstrates a quick installation and usage example of … Read more

Analysis of Streaming Technology for Large Language Models: From SSE, HTTP/2, gRPC to Nginx Applications

Analysis of Streaming Technology for Large Language Models: From SSE, HTTP/2, gRPC to Nginx Applications

What is SSE Server-Sent Events (SSE) is a unidirectional communication protocol based on HTTP that allows the server to actively push data to the client. Unlike the traditional request-response model, SSE establishes a long connection, allowing the server to continuously send event streams to the client. Core Features Client initiates SSE request Receives 200 OK … Read more