Run the cron job every 1 minute to get RSSand sleep for 15 seconds four times. You can block to prevent overlapping (although inserting a database provides some measure of concurrency control).
Pit-like pseudo-code:
if cant_get_lock:
exit
else:
for i in (1,2,3,4):
get RSS
sleep 15 seconds
source
share