I have an algorithm which requires scheduled task that runs a script on a regular basis (every minute). I want to store this data and access those values ranging from last hour to last 24 hrs.
I've looked into saving an array of data to a single mysql field. I know serialize() and unserialize() functions will do.
Can you suggest any other way to store those cron scheduled task values or will array be sufficient?