Like most folks coming from a Relational background, we stuck with rather large column names. Now the code + App is coded & tested. But Mongo best practices note that key names should be short as every column name is stored with-in each document. To complicate things further, we are using the Mongo drivers directly, without any mapping layer like Morphia etc.
Let me rephrase: Even if I use $rename to rename the columns, the client APP is still using the longer names. Then I need to do some kind of JSON Transformation, on each document going out & coming in: on the way out {U: "", C:""} will need to become {Updated:"", Created: ""}. Vice-versa on the way-in.