mirror of
https://github.com/spf13/viper
synced 2024-11-04 20:27:02 +00:00
Update README.md
This commit is contained in:
parent
f415025b98
commit
493643fd5e
1 changed files with 15 additions and 3 deletions
18
README.md
18
README.md
|
@ -830,13 +830,25 @@ different vipers.
|
||||||
|
|
||||||
## Q & A
|
## Q & A
|
||||||
|
|
||||||
Q: Why is it called “Viper”?
|
### Why is it called “Viper”?
|
||||||
|
|
||||||
A: Viper is designed to be a [companion](http://en.wikipedia.org/wiki/Viper_(G.I._Joe))
|
A: Viper is designed to be a [companion](http://en.wikipedia.org/wiki/Viper_(G.I._Joe))
|
||||||
to [Cobra](https://github.com/spf13/cobra). While both can operate completely
|
to [Cobra](https://github.com/spf13/cobra). While both can operate completely
|
||||||
independently, together they make a powerful pair to handle much of your
|
independently, together they make a powerful pair to handle much of your
|
||||||
application foundation needs.
|
application foundation needs.
|
||||||
|
|
||||||
Q: Why is it called “Cobra”?
|
### Why is it called “Cobra”?
|
||||||
|
|
||||||
|
Is there a better name for a [commander](http://en.wikipedia.org/wiki/Cobra_Commander)?
|
||||||
|
|
||||||
|
### Does Viper support case sensitive keys?
|
||||||
|
|
||||||
|
**tl;dr:** No.
|
||||||
|
|
||||||
|
Viper merges configuration from various sources, many of which are either case insensitive or uses different casing than the rest of the sources (eg. env vars).
|
||||||
|
In order to provide the best experience when using multiple sources, the decision has been made to make all keys case insensitive.
|
||||||
|
|
||||||
|
There has been several attempts to implement case sensitivity, but unfortunately it's not that trivial. We might take a stab at implementing it in [Viper v2](https://github.com/spf13/viper/issues/772), but despite the initial noise, it does not seem to be requested that much.
|
||||||
|
|
||||||
|
You can vote for case sensitivity by filling out this feedback form: https://forms.gle/R6faU74qPRPAzchZ9
|
||||||
|
|
||||||
A: Is there a better name for a [commander](http://en.wikipedia.org/wiki/Cobra_Commander)?
|
|
||||||
|
|
Loading…
Reference in a new issue