當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang statistics(Item :: reductions)用法及代碼示例


statistics(Item :: reductions) ->
              {Total_Reductions, Reductions_Since_Last_Call}
類型:
Total_Reductions = Reductions_Since_Last_Call = integer() >= 0

返回有關縮減的信息,例如:

> statistics(reductions).
{2046,11}
改變

從 ERTS 5.5 (Erlang/OTP R11B) 開始,該值不包括在當前調度進程的當前時間片中執行的減少。如果需要精確值,請使用 statistics(exact_reductions).

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 statistics(Item :: reductions) -> {Total_Reductions, Reductions_Since_Last_Call}。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。