Background Info about the database in use #2715
Replies: 2 comments 1 reply
-
Hi @Epiphanius, the database is sqlite so it has all of the limitations listed here: https://www.sqlite.org/limits.html. You can even query the database with other tools such as DB Browser for SQLite. This is probably of interest to you:
There is a node table in the CT database with a "txt" column for the content. The file type is TEXT which theoretically doesn't have a limit but by default it's set to 1 billion bytes. Sub nodes are tracked in a "children" table where each row tracks the node ID and the parent node ID. I've attached the DB schema as a reference. |
Beta Was this translation helpful? Give feedback.
-
@giuspen out of curiosity, why do attachments go in the image table? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
What type of database is used?
What data volumes can still be handled with it?
Where are the most likely limitations?
Maximum size of a node?
How is a new sub-node implemented in the DB?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions