Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I am trying to add the number of watchings of a certain topic to the total popularity calculation formula,is there a plugin that can view the total number of followers for a certain topic?
You can get the follower count of a topic with
await db.setCount(`tid:${tid}:followers`);
Or for multiple topics
await db.setsCount(tids.map(tid => `tid:${tid}:followers`));
@baris Thanks a lot, this is very helpful