Misplaced curiosity ?

Ad: This forum contains affiliate links to products on Amazon and eBay. More information in Terms and rules

bada

Airman 1st Class
So, catchy title? :D
Question for admins/modo's
Marcel Marcel

Because not wanting to die stupid and not knowing how the forums works IRL, i'm toying for fun on Wamp for few weeks with the 3 main free php forum softwares (phpBB, SMF,myBB) and looking at the SQL DB going up in size each time i modify something, add a post/thread for testing purposes and i was wondering:
what size does have a forum as here, with all the images, all the pdf's and the thousends of posts?:-k
...
 
So, catchy title? :D
Question for admins/modo's
Marcel Marcel

Because not wanting to die stupid and not knowing how the forums works IRL, i'm toying for fun on Wamp for few weeks with the 3 main free php forum softwares (phpBB, SMF,myBB) and looking at the SQL DB going up in size each time i modify something, add a post/thread for testing purposes and i was wondering:
what size does have a forum as here, with all the images, all the pdf's and the thousends of posts?:-k
...
Actually I really couldn't tell. I'm guessing it's grown quite a bit over the years. I believe Horse is using AWS to host this stuff (correct me if I'm wrong horseUSA horseUSA ). There you have S3 objectstore that also tiers the data, meaning that data that is not accessed for a while migrates to slower, less expensive storage. This is than mostly for the attachments.

I know that the posts themselves don't take up taht much data. I've crawled this forum in the past for certain statistics and the textual content in json format fits nicely on my laptop, so that shouldn't be a problem.
Be aware that in a database, indexing will add significantly to the used harddrive space. So it's always a trade off between performance and storage space. Further more, if you use MySQL (or MariaDB as it's called now), it will not give back the storage space when you delete things. You'll manually have to clean up that room.
 
Thanks Marcel!
Even if there is no approximative number, at least i can be sure it's a hell of work if the admin need to put the "Files" into external storage, just writing the rule must be heavy if you're not a "server-guy". There must be some crone tasks running here:oops:
 
Thanks Marcel!
Even if there is no approximative number, at least i can be sure it's a hell of work if the admin need to put the "Files" into external storage, just writing the rule must be heavy if you're not a "server-guy". There must be some crone tasks running here:oops:
There are definitely a lot of asynchronous jobs running. What I've seen from horse is that he's competent in his job here.
 

Users who are viewing this thread

Back