MongoDB IDs are unique for a single db cluster. Is it possible to get the collection a specific ObjectID is used in?
I have the hex representation of an ObjectID and need to know the collection the document with this ID is in. Possible?
|
MongoDB IDs are unique for a single db cluster. Is it possible to get the collection a specific ObjectID is used in? I have the hex representation of an ObjectID and need to know the collection the document with this ID is in. Possible? |
||||
|
|
|
It's is not a native feature but it is possible by iterating over all collections |
|||
|
|
|
I'm not sure about your use case but if you are using ObjectID's for
Or diagrammatically:
So there is no collection information stored there. However, any value can be used for [1] http://www.mongodb.org/display/DOCS/Object+IDs#ObjectIDs-TheBSONObjectIdDatatype |
|||
|
|