开发者

Most efficient multi level commenting system

I'm building a multi level commenting system and need a solution for quick reads and writes.

I've looked into adjacency list and nested set and it seems to me that for my particular scenario neither is the right method to use, so I'm looking into non RDBMS solutions as well.

What I would like to achieve:

  • Multy level parent/child relationship
  • Lots of reads and lots of writes
  • Adding/editing any child at any level
  • Sorting entire tree by dateime(old/new), voting score

I f开发者_StackOverflow社区eel like the best solution for RDBMS is adjacency list, where you have recursive reads. But this is very inneficient because there will be thousands of reads per minute. Nested set is great for reads, but I will have lot of writes too which will make it really slow and inefficinet.

Do you know any other techniques that I could use here? Maybe other types of databases?


Most comment threads are very small in size ...less than a few K. So rather than storing each comment as it's own record in the database, you can store the entire comment graph as a single object. This will make it very easy to read and write the comment tree quickly.

This method lends itself very well to a shared cache ala redis or memcached.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜