forked from AkkomaGang/akkoma
26 lines
528 B
Elixir
26 lines
528 B
Elixir
|
defmodule Mix.Tasks.Pleroma.Benchmark do
|
||
|
use Mix.Task
|
||
|
alias Mix.Tasks.Pleroma.Common
|
||
|
|
||
|
def run(["search"]) do
|
||
|
Common.start_pleroma()
|
||
|
|
||
|
Benchee.run(%{
|
||
|
"search" => fn ->
|
||
|
Pleroma.Web.MastodonAPI.MastodonAPIController.status_search(nil, "cofe")
|
||
|
end
|
||
|
})
|
||
|
end
|
||
|
|
||
|
def run(["tag"]) do
|
||
|
Common.start_pleroma()
|
||
|
|
||
|
Benchee.run(%{
|
||
|
"tag" => fn ->
|
||
|
%{"type" => "Create", "tag" => "cofe"}
|
||
|
|> Pleroma.Web.ActivityPub.ActivityPub.fetch_public_activities()
|
||
|
end
|
||
|
})
|
||
|
end
|
||
|
end
|