Is there Database model?
-
Hello Dear:
I use Redis Desktop Manager load the NodeBB Database,but I can figure out the model relationship.I need to know how datas work in nodeBB,then I can create a forum of own,do you have Database model there?anything,like photo,doc...,it is grateful to this.
-
-
@baris thank you! I has read this wiki,but It is only part of Database structure.I need to know all of it.~~
-
@egema Then no, unfortunately we do not maintain a model of the database structure, as it is not like traditional RDBMS, and we use NoSQL.
-
@julian I get it,although it is still confused with me,anyway, thank you too!
-
Sorry for bringing this up again. I understand that you use NoSQL, which means there are no tables, but you still use keys to identify elements stored in the database and there is definitely a hierarchy there (
username:
,group:
, etc). Do you have this documented anywhere?For example, if I wanted to find a post in the database, which are the keys related to the post and which values are you storing?
-
@jcano You'd have to look at the code to see how it is referenced.
However, it's
post:<pid>
.
-
Not ideal, but will do for the moment. Thanks!