We're the creators of Lemmy, Ask Us Anything. *Starts Monday, 7 Aug, 1500 CEST*
This is an opportunity for any users, server admins, or interested third parties to ask anything they'd like to @nutomic@lemmy.ml and I about Lemmy. This includes its development and future, as well as wider issues relevant to the social media landscape today.
Note: This will be the thread tmrw, so you can use this thread to ask and vote on questions beforehand.
You are viewing a single comment
A bit technical question: how do you manage to build performant comment trees on frontend?
https://github.com/LemmyNet/lemmy-ui/blob/main/src/shared/utils/app/build-comments-tree.ts
The scaling / actual trees are done using postgres ltree in the back-end, with a
path
field representing a list of parent comment ids.Thanks!