Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Disqus store your Comments? [closed]

I just stumbled upon Disqus today and am wondering why I would ever need to create my own Comment/Post model again :). Does Disqus store comments in their own database or do you have to store them too? How does this impact performance?

Is Disqus worth it?

like image 888
Lance Avatar asked Dec 29 '09 00:12

Lance


1 Answers

Disqus stores them and provides admin tools, etc.

The performance impact actually in the negative for your backend (since the comment stuff is loaded and inserted into the page at load time) but obviously not for your users :)

You can use the disqus api to get your comments and insert them into your page at generation time if you like, but the usual way is just to include their javascript.

like image 125
rfunduk Avatar answered Oct 19 '22 19:10

rfunduk