通过使用 Erlang 的 timer.tc 命令,可以简单地测量 Elixir 程序的运行时间。
假设需要被测的 Elixir 函数为: Sample.test_fun(args),运行:
:timer.tc(Sample, :test_fun, [args])
注意 Sample 为 module 名称,函数名要改写为 atom 的形式,还有 args 要放入 list 传递。
通过使用 Erlang 的 timer.tc 命令,可以简单地测量 Elixir 程序的运行时间。
假设需要被测的 Elixir 函数为: Sample.test_fun(args),运行:
:timer.tc(Sample, :test_fun, [args])
注意 Sample 为 module 名称,函数名要改写为 atom 的形式,还有 args 要放入 list 传递。
本文标题:在 Elixir 中使用 Erlang 的 timer:tc 命
本文链接:https://www.haomeiwen.com/subject/dlvyfttx.html
网友评论