I want to set one of my fields as primary key. I am using MongoDB as my NoSQL.
I want to set one of my fields as primary key. I am using MongoDB as my NoSQL.
If you're using Mongo on Meteor, you can use _ensureIndex:
CollectionName._ensureIndex({field:1 }, {unique: true});