I am planning to create a SASS like blogger.com , In future there may be million and millions of posts.What is the best way to store this.
Example of my Mysql columns
Title , Date , author , Content
Now should i store the blog contents in mysql itself as text field or I can store the posts as text in s3 and reference the path of the s3 in content column , so it saves space in mysql and keep the table fast.
P.s : I don't want search features in content column ,.
Where do blogger.com or anyother companies with lots of Text store their data.
If you guys have any Ideal way to store this data for fastest retrieval , please let me know.