I want to add auto increment value in a field in mongodb using php, without using counting the records and next number(count + 1) will be my increment value...
Or Is there any way to create array of autoincrement values in mongodb,php for example A customer having multiple emails and addresses then we can store it like email[{1:'a@x.com',2:'demo@example.com'},...] and also same for address[{1:'Indore',2:'Dewas'},...] So for uniqueness I want to set autoincrement value from each email and address..
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
Ideally you should not be using autoincrement as identifier in MongoDb. If you want to , refer 2 good methods given here : http://www.mongodb.org/display/DOCS/How+to+Make+an+Auto+Incrementing+Field |
|||
|
|
|
But only for single process/instance !!!!!!!!
|
|||
|
|
