what django supported database is best for representing trees or revision history?

21 views Asked by At

I want to avoid representing a version control system for AI models in my postgres DB through django. What NoSQL DB can represent a tree structure and has a Django library?

1

There are 1 answers

0
merhoo On

Postgres supports a tree like data, and there is a not well supported Django extension called ltree that implements this Postgres data structure, which you can implement by inheriting the extension's TreeModel.