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 have noticed that facebook has moved away from having id's that start with 1... there userIds and other objects like images etc start in the 100 trillions... Is there a reason they do this rather than starting at id 1? This is not exactly how fb are doing it, but the idea... users_id - start - 100'000'000'000 image_id - start - 200'000'000'000 video_id - start - 300'000'000'000

Is there a reason to do something like this?... I can see that this way every object would have a unique id, as even facebook would never get more than 100 trillion images and therefore the image_id would never cross over into the video_id, but why do it like that?

share|improve this question
I think this is opening up for discussion – simchona Feb 21 '12 at 20:52

closed as not constructive by nickb, rdlowrey, Juicy Scripter, DMCS, Daniel Fischer Feb 22 '12 at 20:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Most likely they do that for having the very simple way of identifying a particular object by only a single number. This also could help to shard the objects better.

But personally I've never seen any official explanation (though I read their blogs and see conferences)

share|improve this answer
Thanks for your response. – jon Feb 22 '12 at 8:56

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