2.4. Time format

  1. Some parameters involve values representing time, such as timeouts. These
  2. values are generally expressed in milliseconds (unless explicitly stated
  3. otherwise) but may be expressed in any other unit by suffixing the unit to the
  4. numeric value. It is important to consider this because it will not be repeated
  5. for every keyword. Supported units are :
  6.  
  7. - us : microseconds. 1 microsecond = 1/1000000 second
  8. - ms : milliseconds. 1 millisecond = 1/1000 second. This is the default.
  9. - s : seconds. 1s = 1000ms
  10. - m : minutes. 1m = 60s = 60000ms
  11. - h : hours. 1h = 60m = 3600s = 3600000ms
  12. - d : days. 1d = 24h = 1440m = 86400s = 86400000ms