Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
1–8 of 8 posts
Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#2PS: English is a foreign language for me, if you can point out any grammatical errors, I will be very happy too.
Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#3Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#4you means there's no db? everything get stored in json ?
However the article ID is still created by mongodb-native module.
Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#5you means there's no db? everything get stored in json ?
Yes, at first I use mongodb but I found the performance was not affected after I removed mongo, since I caching all the data in memory. However the article ID is still created by mongodb-native module.
How would u scale it, expecting to cache everything in memory?
Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#6Earlier quoted context omitted.
Yes, at first I use mongodb but I found the performance was not affected after I removed mongo, since I caching all the data in memory. However the article ID is still created by mongodb-native module.
so these means for small websites only? How would u scale it, expecting to cache everything in memory?
Yes. I plan to do this, cache everything.
I have carefully calculate the demand of memory and the cost.
1) As traffic grows, memory consumption does not growing, because of node.js?
I was running another site ourjs.com, sometime I saw 100~200 active users on site at the same time (from Google Analytic), but the memory used of ourjs thread is still less than 100Mb, almost the same when there is no traffic.
2) JSON Data doesn't consumption much memory, I post one article per day on my ourjs, now there are more than 450 articles, I think I can use this framework for 10 years.
3) There maybe memory limitation in V8 but I don't think the blog/website will exceed this limit, maybe I will split into several threads in future if I really run into this issue.
Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#7Re: Free Blog, Forum, Website Platform and CMS based on Node.js (Stored in JSON)
#8Looks good