GO语言"sync/atomic"包中"Value"类型的用法及代码示例。
值提供了一致类型值的原子加载和存储。 Value 的零值从 Load 返回 nil。调用 Store 后,不得复制 Value。
首次使用后不得复制值。
用法:
type Value struct {
// contains filtered or unexported fields
}
示例(配置):
以下示例展示了如何使用 Value 定期更新程序配置并将更改传播到工作 goroutine。
package main
import (
"sync/atomic"
"time"
)
func loadConfig() map[string]string {
return make(map[string]string)
}
func requests() chan int {
return make(chan int)
}
func main() {
var config atomic.Value // holds current server configuration
// Create initial config value and store into config.
config.Store(loadConfig())
go func() {
// Reload config every 10 seconds
// and update config value with the new version.
for {
time.Sleep(10 * time.Second)
config.Store(loadConfig())
}
}()
// Create worker goroutines that handle incoming requests
// using the latest config value.
for i := 0; i < 10; i++ {
go func() {
for r := range requests() {
c := config.Load()
// Handle request r using config c.
_, _ = r, c
}
}()
}
}
示例(只读):
下面的例子展示了如何使用copy-on-write idiom 来维护一个可扩展的频繁读取但不经常更新的数据结构。
package main
import (
"sync"
"sync/atomic"
)
func main() {
type Map map[string]string
var m atomic.Value
m.Store(make(Map))
var mu sync.Mutex // used only by writers
// read function can be used to read the data without further synchronization
read := func(key string) (val string) {
m1 := m.Load().(Map)
return m1[key]
}
// insert function can be used to update the data without further synchronization
insert := func(key, val string) {
mu.Lock() // synchronize with other potential writers
defer mu.Unlock()
m1 := m.Load().(Map) // load current value of the data structure
m2 := make(Map) // create a new value
for k, v := range m1 {
m2[k] = v // copy all data from the current object to the new one
}
m2[key] = val // do the update that we need
m.Store(m2) // atomically replace the current object with the new one
// At this point all new readers start working with the new version.
// The old version will be garbage collected once the existing readers
// (if any) are done with it.
}
_, _ = read, insert
}
相关用法
- GO Value用法及代码示例
- GO Values.Get用法及代码示例
- GO Values用法及代码示例
- GO Values.Set用法及代码示例
- GO Values.Has用法及代码示例
- GO Values.Del用法及代码示例
- GO Values.Add用法及代码示例
- GO Value.FieldByIndex用法及代码示例
- GO Values.Encode用法及代码示例
- GO ValidString用法及代码示例
- GO Valid用法及代码示例
- GO ValidRune用法及代码示例
- GO Val用法及代码示例
- GO Varint用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。