docs: clarify adjacency list (#10664)

Closes: #2540
This commit is contained in:
Ahmed Radwan 2025-01-05 23:16:25 +02:00 committed by GitHub
parent c293bd278d
commit 65026cc509
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,6 +12,7 @@ To learn more about the hierarchy table take a look at [this awesome presentatio
## Adjacency list
Adjacency list is a simple model with self-referencing.
Note that TreeRepository doesn't support Adjacency list.
The benefit of this approach is simplicity,
a drawback is that you can't load big trees all at once because of join limitations.
To learn more about the benefits and use of Adjacency Lists look at [this article by Matthew Schinckel](http://schinckel.net/2014/09/13/long-live-adjacency-lists/).