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.

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..

share|improve this question

2 Answers

up vote 0 down vote accepted

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

share|improve this answer

But only for single process/instance !!!!!!!!

$ilosc = $this->ofe->find(array(),array('ide'))->sort(array('ide' => -1 ))->limit(1);

$ilosc = array_pop(iterator_to_array($ilosc));

if ( !isset($ilosc['ide'])  ) :
    $this->doc['ide'] = 0;
else :
    $this->doc['ide'] = ++$ilosc['ide'];
endif;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.