Skip to content

Commit

Permalink
doc: discuss concurrency in README
Browse files Browse the repository at this point in the history
  • Loading branch information
whereswaldon authored and sagikazarmark committed Apr 15, 2021
1 parent 7fdb267 commit cb41ae0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cb41ae0

Please sign in to comment.