Quali unità utilizza l'arricciatura per la larghezza di banda?


17

curl sulla riga di comando visualizza i progressi in questo modo:

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  8 1000M    8 85.2M    0     0    57k      0  1:06:13  0:05:38  1:00:35   47k

La velocità visualizzata in questo esempio è 47k. Ma cosa significa? È questo:

  • 47 kB, ovvero 47 * 1024 byte
  • 47 kB, ovvero 47 * 1000 byte
  • 47kb, ovvero 47 * 1000 bit (i bit vengono spesso utilizzati per misurare la velocità)

Ed è:

  • al secondo
  • o al minuto?

1
Domanda simile per wget: superuser.com/q/184331/90668
Flimm

Risposte:


14

Quali unità utilizza l'arricciatura per la larghezza di banda?

Secondo il codice sorgente lo è kiB per second.


Qui puoi vedere la definizione usa 1024e non1000

/* The point of this function would be to return a string of the input data,
   but never longer than 5 columns (+ one zero byte).
   Add suffix k, M, G when suitable... */
static char *max5data(curl_off_t bytes, char *max5)
{
#define ONE_KILOBYTE  CURL_OFF_T_C(1024)
#define ONE_MEGABYTE (CURL_OFF_T_C(1024) * ONE_KILOBYTE)
#define ONE_GIGABYTE (CURL_OFF_T_C(1024) * ONE_MEGABYTE)
#define ONE_TERABYTE (CURL_OFF_T_C(1024) * ONE_GIGABYTE)
#define ONE_PETABYTE (CURL_OFF_T_C(1024) * ONE_TERABYTE)

...

}

Qui puoi vedere che il calcolo è fatto in ms e poi diviso 1000per ottenere secondi.

  /* Calculate the average speed the last 'span_ms' milliseconds */
  {
    curl_off_t amount = data->progress.speeder[nowindex]-
      data->progress.speeder[checkindex];

    if(amount > CURL_OFF_T_C(4294967) /* 0xffffffff/1000 */)
      /* the 'amount' value is bigger than would fit in 32 bits if
         multiplied with 1000, so we use the double math for this */
      data->progress.current_speed = (curl_off_t)
        ((double)amount/((double)span_ms/1000.0));
    else
      /* the 'amount' value is small enough to fit within 32 bits even
         when multiplied with 1000 */
      data->progress.current_speed = amount*CURL_OFF_T_C(1000)/span_ms;
  }

1
Ho dovuto cercare questo, quindi spero che questo risparmi a qualcuno lo sforzo: kiB è un kibibyte e puoi cercare siti come questo per convertirlo in altre unità.
SteveLambert,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.