Storing a directory structure in database

后端 未结 3 957
感情败类
感情败类 2021-02-06 05:06

In my rails app a user can have a directory structure which has folders and files in sub-folders. Which is the best way to store such data ??
Also, which database offers bes

3条回答
  •  -上瘾入骨i
    2021-02-06 05:27

    It's simple tree stored in sql. Either check the standard parent-child scheme or implement preordered tree traversal scheme (left-right).

提交回复
热议问题