Idempotency: Use special cache, keep for 6 hours.
[akkoma] / lib / pleroma / application.ex
1 defmodule Pleroma.Application do
2 use Application
3
4 # See http://elixir-lang.org/docs/stable/elixir/Application.html
5 # for more information on OTP Applications
6 def start(_type, _args) do
7 import Supervisor.Spec
8
9 # Define workers and child supervisors to be supervised
10 children =
11 [
12 # Start the Ecto repository
13 supervisor(Pleroma.Repo, []),
14 # Start the endpoint when the application starts
15 supervisor(Pleroma.Web.Endpoint, []),
16 # Start your own worker by calling: Pleroma.Worker.start_link(arg1, arg2, arg3)
17 # worker(Pleroma.Worker, [arg1, arg2, arg3]),
18 worker(Cachex, [
19 :user_cache,
20 [
21 default_ttl: 25000,
22 ttl_interval: 1000,
23 limit: 2500
24 ]
25 ]),
26 worker(
27 Cachex,
28 [
29 :idempotency_cache,
30 [
31 default_ttl: :timer.seconds(6 * 60 * 60),
32 ttl_interval: :timer.seconds(60),
33 limit: 2500
34 ]
35 ],
36 id: :cachex_idem
37 ),
38 worker(Pleroma.Web.Federator, []),
39 worker(Pleroma.Gopher.Server, []),
40 worker(Pleroma.Stats, [])
41 ] ++
42 if Mix.env() == :test,
43 do: [],
44 else:
45 [worker(Pleroma.Web.Streamer, [])] ++
46 if(
47 !chat_enabled(),
48 do: [],
49 else: [worker(Pleroma.Web.ChatChannel.ChatChannelState, [])]
50 )
51
52 # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
53 # for other strategies and supported options
54 opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
55 Supervisor.start_link(children, opts)
56 end
57
58 defp chat_enabled do
59 Application.get_env(:pleroma, :chat, []) |> Keyword.get(:enabled)
60 end
61 end