Skip to content

Commit

Permalink
add #60
Browse files Browse the repository at this point in the history
  • Loading branch information
smallnest committed Apr 21, 2024
1 parent bb179cf commit b3ae9d0
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Go tips from [Phuong Le](https://twitter.com/func25).
| 57 | | |
| 58 | | |
| 59 | | |
| 60 | | |
| 60 | sync.Once is the best way to do things once | smallnest |
| 61 | | |
| 62 | | |
| 63 | | |
Expand Down
60 changes: 60 additions & 0 deletions src/060.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Tip #60 sync.Once是执行单次操作的最佳方式

> 原始链接:[Golang Tip #60: sync.Once is the best way to do things once](https://twitter.com/func25/status/1772587758114255322)
>
当我们处理单例时,这种解决方案是很常见的。有时单例会带来问题,但在某些情况下,它们是可以接受的。我们将讨论:

- 问题所在
- 如何修复
- 一种误解
- sync.Once实际工作方式

假设我们有一个配置对象,需要在第一次被调用时进行一次设置,之后就可以共享使用。下面是一种简单的实现方式:
![](./images/060/1.png)

但是,当同时发生很多事情时,这种方式存在问题。如果在配置尚未设置时,许多goroutine试图同时获取配置,我们可能会多次执行`LoadConfig()`。这并不是我们想要的。现在,让我们看看sync.Once是如何提供帮助的:
![](./images/060/2.png)

我们创建一个设置配置并将其传递给`once.Do(f)`的函数。即使有很多goroutine同时调用`GetConfig()`,`sync.Once`也能确保我们传递给`.Do(..)`的设置函数只运行一次。

**sync.Once不能被重复使用**

关键是,如果我们试图再次使用sync.Once,并传递另一个函数,它将不起作用。就像这样:
```go
o .Do(f1)
o .Do(f2)
```

第二个函数f2将被忽略,尽管它与f1不同。

**它是如何工作的?**

一个sync.Once会跟踪两件事:
- 一个原子计数器(或标志),有0和1两个值。
- 一个用于保护慢路径的互斥锁。

我们将稍后讨论所谓的快路径和慢路径,但先让我们看看sync.Once是如何构建的:
![](./images/060/3.png)

**快速路径**

当调用 `Do(f)` 时,它首先查看原子计数器。如果计数器为0,则表示函数尚未执行。

这个快速通道的存在是为了当函数已经执行过时,后续的调用可以快速跳过并无需等待。

**慢速路径**
若计数器不为0,则会触发慢速路径。sync.Once 会进入慢速模式并调用 `doSlow(f)`
![](./images/060/4.png)

> 译者注:这里作者说错了,计数器为0(`o.done.Load() == 0`)才会进入慢速路径
- `o.m.Lock()`:通过互斥锁确保同一时间只有一个goroutine能够执行接下来的步骤。
- `o.done.Load() == 0`:获得锁之后,再次检查计数器以确保在此期间没有其他goroutine抢先执行。
- `o.done.Store(1)`:为了确保我们知道函数已完成,在函数执行完毕后更新计数器。

> “为什么要设置快速路径和慢速路径?”
我们采用快速路径和慢速路径是因为我们希望建立既能尽可能快速又能必要时确保安全的机制。

慢速路径仅仅是用于初始化阶段,这个阶段很短暂。一旦初始化完成,每次调用`.Do`都会变得很快,这对长远性能而言是有益的。
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- [Tip #44 有意地使用Must函数来停止程序](./044.md)
- [Tip #47 表驱动测试,测试集和并行运行测试](./047.md)
- [Tip #50 使结构体不可比较](./050.md)
- [Tip #60 sync.Once是执行单次操作的最佳方式](./060.md)
- [Tip #71 用泛型让 sync.Pool 类型安全](./071.md)
- [Tip #65 使用泛型返回指针](./065.md)
- [Tip #66 在fmt.Errorf中简化你的错误信息](./066.md)
Expand Down
Binary file added src/images/060/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/060/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/060/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/060/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b3ae9d0

Please sign in to comment.