سلام
با یک تایمر ساده
میتونید از تایمر سمت کلاینت استفاده کنید ، که سرور رو هم مشغول نکنید


function autoSave()
{
$.get(URL, DATA); // Use any AJAX code here for the actual autosaving. This is lightweight jQuery.
setTimeout("autoSave()", 60000); // Autosaves every minute.
}
autoSave(); // Initiate the auto-saving.