commit
5b276dc208
27
README.md
27
README.md
@ -3,7 +3,7 @@
|
|||||||
Golang configuration,use to Viper reading from remote Nacos config systems. Viper remote for Naocs.
|
Golang configuration,use to Viper reading from remote Nacos config systems. Viper remote for Naocs.
|
||||||
|
|
||||||
```go
|
```go
|
||||||
runtime_viper := viper.New()
|
config_viper := viper.New()
|
||||||
|
|
||||||
remote.SetOptions(&remote.Option{
|
remote.SetOptions(&remote.Option{
|
||||||
Url: "localhost",
|
Url: "localhost",
|
||||||
@ -14,13 +14,30 @@ remote.SetOptions(&remote.Option{
|
|||||||
Auth: nil,
|
Auth: nil,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
remote_viper := viper.New()
|
||||||
err := remote_viper.AddRemoteProvider("nacos", "localhost", "")
|
err := remote_viper.AddRemoteProvider("nacos", "localhost", "")
|
||||||
remote_viper.SetConfigType("yaml")
|
remote_viper.SetConfigType("yaml")
|
||||||
|
err = remote_viper.ReadRemoteConfig() //sync get remote configs to remote_viper instance memory . for example , remote_viper.GetString(key)
|
||||||
|
|
||||||
_ = remote_viper.ReadRemoteConfig() //sync get remote configs to remote_viper instance memory . for example , remote_viper.GetString(key)
|
if err == nil {
|
||||||
_ = remote_viper.WatchRemoteConfigOnChannel() //async watch , auto refresh configs.
|
config_viper = remote_viper
|
||||||
|
fmt.Println("used remote viper")
|
||||||
|
provider := remote.NewRemoteProvider("yaml")
|
||||||
|
respChan := provider.WatchRemoteConfigOnChannel(config_viper)
|
||||||
|
|
||||||
appName := remote_viper.GetString("key") // sync get config by key
|
go func(rc <-chan bool) {
|
||||||
|
for {
|
||||||
|
<-rc
|
||||||
|
fmt.Printf("remote async: %s", config_viper.GetString("yoyogo.application.name"))
|
||||||
|
}
|
||||||
|
}(respChan)
|
||||||
|
}
|
||||||
|
|
||||||
fmt.Println(appName)
|
go func() {
|
||||||
|
for {
|
||||||
|
time.Sleep(time.Second * 30) // delay after each request
|
||||||
|
appName = config_viper.GetString("yoyogo.application.name")
|
||||||
|
fmt.Println("sync:" + appName)
|
||||||
|
}
|
||||||
|
}()
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user