I'm delving into the world of using wp-cron for a plugin that I'm developing at the moment, and was just curious if somebody could answer a question...
I wasn't able to determine this from the codex, nor track it down in the code yet; if you schedule an event to run twicedaily, what happens if the first occurrence of the event is never tripped?
Since wp-cron is only ran once a visitor arrives at your site after the scheduled event is set to occur, and I'm assuming (and hoping in a way) that a visit to Blog A won't trip events for Blog B, I'm curious if Blog C has no visits for a 12 hour period of time, will it attempt to run the event twice, or is it smart enough to only run it once?
I'm considering getting creative and writing a shell script that will attempt to trip the wp-cron event a moment after it's set to run, but if this plugin winds up making its way to public release, I just want to be sure of what will happen.