Well basically, if I must show one entry 5000 times per day, what would be the best option to show it each day 5000 times without using too much cpu of server?
So basically, for example we have a database with data (for example 3 entries), and each entry we must show 3000 times per day, what would be the best option?
Would it be cronjobs or any other?
Run an
update_script.phpwith the cronjob one time a day, that performs one of two posible things:a) it creates an
included.incthat is included from other (previously existing) file withrequire_once 'included.inc'(as suggested by @andrewsi) with the data from the DB orb) it creates an
todaydata.htmon your public space with the data from the DB