views:

328

answers:

1

I'm looking for a Django tree library and doing my best to avoid Nested Sets (they're a nightmare to maintain).

The cons of the adjacency list model have always been an inability to fetch descendants without resorting to multiple queries. The WITH clause in Postgres seems like a solid solution to this problem.

Has anyone seen any performance reports regarding WITH vs. Nested Set? I assume the Nested set will still be faster but as long as they're in the same complexity class, I could swallow a 2x performance discrepancy.

Django-Treebeard interests me. Does anyone know if they've implemented the WITH clause when running under Postgres?

Has anyone here made the switch away from Nested Sets in light of the WITH clause?

+1  A: 

Some thoughts regarding the possibilities of this approach here:

http://www.davidcramer.net/code/django/6939/scaling-threaded-comments-on-django-at-disqus.html

In short: David Cramer (django-debug-toolbar) really likes recursive queries and how they've performed for Disqus.

Koobz