mirror of
https://github.com/spf13/viper
synced 2024-11-13 00:27:02 +00:00
doc: discuss concurrency in README
This commit is contained in:
parent
7fdb267c73
commit
cb41ae0ab8
1 changed files with 3 additions and 0 deletions
|
@ -856,6 +856,9 @@ There has been several attempts to implement case sensitivity, but unfortunately
|
|||
|
||||
You can vote for case sensitivity by filling out this feedback form: https://forms.gle/R6faU74qPRPAzchZ9
|
||||
|
||||
### Is it safe to concurrently read and write to a viper?
|
||||
|
||||
No, you will need to synchronize access to the viper yourself (for example by using the `sync` package). Concurrent reads and writes can cause a panic.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
|
|
Loading…
Reference in a new issue