A .Net developer, I have not yet done any WordPress plugin development, and would like some basic details/starting points for the following.
As a part of a WordPress plugin, is it possible to create a polling daemon to kick off an intermittent process (say, every two hours) - it could really do anything like database look-ups.
The functionality would be similar to a Windows service that operates in the same matter.
Is it possible to create this functionality as a part of a plugin, or would this require some server-side implementation?
Thanks.
-- UPDATE --
In researching the wp_schedule_event I see that it is an event executed whenever someone visits your site. However, for sites with little traffic, this may not be optimal, but a possible solution?