Go语言(Golang)如何处理高并发?

Go语言通过goroutine和channel提供了高并发的解决方案。

  1. 使用goroutine

Goroutine 是 Go 语言中并发的核心。goroutine 是轻量级的线程,它们在一个线程上下文中启动,并由 Go 的运行时管理。创建一个 goroutine 的开销极低。




package main
 
import (
    "fmt"
    "time"
)
 
func hello() {
    fmt.Println("Hello world goroutine")
}
 
func main() {
    go hello() // 创建一个goroutine
 
    fmt.Println("main function")
 
    time.Sleep(1 * time.Second) // 等待goroutine执行完成
}
  1. 使用channel

Channel 是 Go 语言中的一个类型,你可以通过它来发送或者接收值,这些值可以在不同的 goroutine 之间同步传递。




package main
 
import (
    "fmt"
    "time"
)
 
func printNumbers(numbers chan int) {
    for number := range numbers {
        fmt.Println(number)
    }
}
 
func main() {
    numbers := make(chan int, 5)
 
    go printNumbers(numbers)
 
    for i := 0; i < 5; i++ {
        numbers <- i
        time.Sleep(time.Second) // 模拟一些处理时间
    }
 
    close(numbers) // 关闭channel,通知printNumbers函数结束循环
}
  1. 使用mutex和atomic

在并发编程中,我们还需要处理共享数据的竞争问题。Go 语言提供了 sync 包中的 mutex 和 rwmutex 类型,以及 sync/atomic 包中的原子函数来处理这些问题。




package main
 
import (
    "fmt"
    "sync"
    "sync/atomic"
)
 
var counter int32
var wg sync.WaitGroup
 
func increment() {
    defer wg.Done()
    for i := 0; i < 2; i++ {
        atomic.AddInt32(&counter, 1)
    }
}
 
func main() {
    wg.Add(2)
    go increment()
    go increment()
    wg.Wait()
 
    fmt.Println("Counter:", counter)
}
  1. 使用超时和取消

在 Go 语言中,通过 context 包可以实现对 goroutine 的超时管理和取消管理。




package main
 
import (
    "context"
    "fmt"
    "time"
)
 
func longRunningOperation(ctx context.Context) {
    select {
    case <-ctx.Done():
        fmt.Println("Operation canceled")
        return
    case <-time.After(5 * time.Second):
        fmt.Println("Operation completed")
    }
}
 
func main() {
    ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
    defer cancel()
 
    longRunningOperation(ctx)
}
  1. 使用池

使用 sync.Pool 可以提高大量 goroutine 之间共享数据的效率。




package main
 
import (
    "fmt"
    "sync"
)
 
var pool = sync.Pool{
    New: func() interface{} {
        return "Initial value"
    },
}
 
func getValue() interface{} {
    return pool.Get()
}
 
func setValue(value interface{}) {
    pool.Put(value)
}
 
func main() {
    setValue("New value")
    fmt.Println(getValue())
}
  1. 使用select处理多个channel
最后修改于:2024年08月15日 22:12

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日