I am a noob coming from a SQL background. Please forgive my SQLness in advance.
Currently working on a new client project in which I need to store mass amounts of data which is fairly simple, but I'm not sure what is the best method for doing this in Couchdb.
This is for employee vehicle tracking. I need to store VIN (Vehicle Identification Number), GPSLat, GPSLong, DateTimeStamp.
The VIN will never change, but will have tons of GPS data associated with it.
In a SQL structure, it would be pretty simple - VIN table, then another relational table for the data.
In a Couchdb key-pair, would you recommend storing the VIN over and over, or do I create 1 VIN as a key-pair and store the GPS data some way? If so, how should I keep storing the GPS data as a key-pair?
Thank you in advance to you experts on key-pair storing.