


How to implement request forwarding and add delay function in Golang
When developing web applications, we often need to forward requests to another server for processing, such as implementing load balancing, request caching, etc. Golang is an efficient language, and the net/http package in its standard library provides a variety of ways to forward requests. Here, let’s discuss how to implement request forwarding and add delay functions in Golang.
First, we need to create an HTTP Server to receive user requests. For the convenience of demonstration, I will simulate request forwarding by starting two HTTP Servers locally. One of the Server's ports is 8081 and the other is 8082.
package main import ( "fmt" "log" "net/http" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { log.Printf("request from: %s\n", r.RemoteAddr) resp, err := http.Get("http://127.0.0.1:8081") if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } defer resp.Body.Close() _, err = w.Write([]byte(fmt.Sprintf("[%s]: %s", r.RemoteAddr, resp.Status))) if err != nil { log.Printf("failed to write response: %s", err.Error()) } }) addr := ":8080" log.Printf("listening on %s...\n", addr) log.Fatal(http.ListenAndServe(addr, nil)) }
Next, we need to modify the code to implement request forwarding and add delay functions. Since Golang has good support for asynchronous operations, we can implement delays through goroutine and channels.
package main import ( "fmt" "log" "net/http" "time" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { log.Printf("request from: %s\n", r.RemoteAddr) // 使用channel来实现延时 done := make(chan bool) go func() { time.Sleep(1 * time.Second) done <- true }() // 请求转发 resp, err := http.Get("http://127.0.0.1:8081") if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } defer resp.Body.Close() _, err = w.Write([]byte(fmt.Sprintf("[%s]: %s", r.RemoteAddr, resp.Status))) if err != nil { log.Printf("failed to write response: %s", err.Error()) } // 等待延时完成 <-done }) addr := ":8080" log.Printf("listening on %s...\n", addr) log.Fatal(http.ListenAndServe(addr, nil)) }
In the above code, we created a channel, used goroutine to implement a 1 second delay, then used http.Get() to forward the request, and finally waited for the channel to send a signal, that is, delay After the request is completed, the response is returned to the user. In this way, the function of adding delay while forwarding the request is realized.
In addition to using goroutine and channel to implement delay, we can also use the time.Sleep() method provided in the time package, as shown below:
time.Sleep(1 * time.Second)
It should be noted that in practice In a production environment, we need to pay attention to the delay time to avoid application performance degradation caused by too long delay.
The above is the detailed content of How to implement request forwarding and add delay function in Golang. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a
