HappyDeveloper
HappyDeveloper

Reputation: 12805

Can I index a tree in MongoDB?

I need to create a tree with tens of levels and thousands of nodes, and then find a given document by field inside that tree.

Is it possible to index that field in the whole tree?

And what would the query to find that document look like?

Upvotes: 0

Views: 129

Answers (1)

user2665694
user2665694

Reputation:

You want to store a graph, use a graph database.

Upvotes: 2

Related Questions