gpt4 book ai didi

golang 同步/原子包?

转载 作者:数据小太阳 更新时间:2023-10-29 03:34:48 28 4
gpt4 key购买 nike

我写了一段代码记录请求数。

package main

import (
"log"
"net/http"
"runtime"
"sync/atomic"
)

var count int32 = 0

func test(w http.ResponseWriter, r *http.Request) {
count = atomic.LoadInt32(&count)
atomic.AddInt32(&count, 1)
log.Println("count:", count)
}
func main() {
runtime.GOMAXPROCS(runtime.NumCPU() - 1)
http.HandleFunc("/", test)
http.ListenAndServe(":8080", nil)
}

考虑到并发的条件,所以使用原子包。我通过 apache ab 工具测试代码

ab -c 400 -n 1000 http://localhost:8080/

结果正确: result但是,有人说他在他的电脑上得到了1004或其他号码,我已经测试了很多次代码,但是在我的电脑上结果是正确的,我的方法有问题吗?我是新来的,提前致谢。

最佳答案

您错误地使用了 sync/atomic 包。如果您有一个原子变量,则必须使用原子函数完成所有读写操作。

您的代码已修复,因此 count 变量不会以非原子方式写入或读取:

package main

import (
"log"
"net/http"
"runtime"
"sync/atomic"
)

var count int32

func test(w http.ResponseWriter, r *http.Request) {
currentCount := atomic.LoadInt32(&count)
atomic.AddInt32(&count, 1)
log.Println("count:", currentCount)
}
func main() {
runtime.GOMAXPROCS(runtime.NumCPU() - 1)
http.HandleFunc("/", test)
http.ListenAndServe(":8080", nil)
}

关于golang 同步/原子包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46689003/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com