-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add option to ignore case in key names #66
Comments
This can only work if never two store keys which only differ in their case. Would that be ok? |
I think this would be ok, yes. Maybe start with a non-default option to ignore case and see how it goes? |
It woud be nice if we stored properties in case sensitive mode, but optionally allowed the user to search case insensitively. for this to work, I have to find out if Mongo supports case insensitive searches. if it doesn't then we can decide to either not have this option or to actually store everything in lower case. |
As far as I know, MongoDB doesn't have any option to ignore the cases for the keys:
There is a way to create case insensitive indices but not for the So the possible options:
|
Any decision about this? |
Decision: default to the lower casing keywords with a command-line option to not do it. + pre-check @ upload |
I uploaded a file containing some properties named
DFT_force
and others nameddft_force
. I know I can rename them withabcd rename-key
, but since in ASE and QUIP case is ignored for property names it would be good to have an option to do this inabcd
. Maybe this should even be the default?The text was updated successfully, but these errors were encountered: