Penso che i battiti siano sfalsati per natura, poiché il segno di spunta successivo è determinato dal tempo del browser time()
all'interno del scheduleNextTick()
metodo nel /wp-includes/js/heartbeat.js
file:
var delta = time() - settings.lastTick,
interval = settings.mainInterval;
dove è usato per programmare il prossimo tick con la setTimeout
funzione:
if ( delta < interval ) {
settings.beatTimer = window.setTimeout(
function() {
connect();
},
interval - delta
);
} else {
connect();
}
Il tempo del browser è definito come:
function time() {
return (new Date()).getTime();
}
Il connect()
metodo contiene la chiamata ajax e utilizzaalways()
.always( function() {
settings.connecting = false;
scheduleNextTick();
})
per programmare il prossimo tick.
Gli intervalli di tick disponibili sono 5, 15, 30 e 60.
Per un gran numero di utenti molto attivi, con un breve intervallo di tick, i battiti potrebbero sembrare accadere contemporaneamente.
È sempre utile disporre di alcuni dati, quindi è possibile registrare i tick dagli utenti che hanno effettuato l'accesso, con l' heartbeat_tick
hook:
add_action( 'heartbeat_tick',
function( $response, $screen_id )
{
$file = WP_CONTENT_DIR . '/ticks.log'; // Edit this filepath to your needs.
if( file_exists( $file ) && is_writeable( $file ) )
{
file_put_contents(
$file,
sprintf( "%s - Tick from user_id : %d - from screen_id : %s" . PHP_EOL,
date( 'c' ),
get_current_user_id(),
$screen_id
),
FILE_APPEND | LOCK_EX
);
}
}
, 11, 2 );
Ecco un esempio dal ticks.log
file:
2014-09-01T12:41:04+00:00 - Tick from user_id : 1 - from screen_id : edit-post
2014-09-01T12:41:19+00:00 - Tick from user_id : 1 - from screen_id : edit-post
2014-09-01T12:41:34+00:00 - Tick from user_id : 1 - from screen_id : edit-post
2014-09-01T12:41:56+00:00 - Tick from user_id : 1 - from screen_id : post
2014-09-01T12:42:11+00:00 - Tick from user_id : 1 - from screen_id : post
2014-09-01T12:42:20+00:00 - Tick from user_id : 3 - from screen_id : upload
2014-09-01T12:42:38+00:00 - Tick from user_id : 1 - from screen_id : post
2014-09-01T12:43:05+00:00 - Tick from user_id : 1 - from screen_id : post
2014-09-01T12:43:08+00:00 - Tick from user_id : 3 - from screen_id : attachment
2014-09-01T12:43:20+00:00 - Tick from user_id : 1 - from screen_id : post
2014-09-01T12:43:36+00:00 - Tick from user_id : 1 - from screen_id : post
2014-09-01T12:44:17+00:00 - Tick from user_id : 3 - from screen_id : profile