Add basic user caching.
[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 # Start the Ecto repository
12 supervisor(Pleroma.Repo, []),
13 # Start the endpoint when the application starts
14 supervisor(Pleroma.Web.Endpoint, []),
15 # Start your own worker by calling: Pleroma.Worker.start_link(arg1, arg2, arg3)
16 # worker(Pleroma.Worker, [arg1, arg2, arg3]),
17 supervisor(ConCache, [[
18 ttl_check: :timer.seconds(1),
19 ttl: :timer.seconds(5)
20 ], [name: :users]])
21 ]
22
23 # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
24 # for other strategies and supported options
25 opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
26 Supervisor.start_link(children, opts)
27 end
28 end