diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-04-30 10:06:57 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-04-30 10:06:57 +0200 |
commit | 11ea08649d5a5e5d2ac9ee29406f53240be77ec4 (patch) | |
tree | e048fe1be5d48ec20f6e91187c403af5cfa0c5f6 /lib | |
parent | ffc604a2c2d963b63e6cd13d0ee7cc9024f632a4 (diff) | |
download | pleroma-11ea08649d5a5e5d2ac9ee29406f53240be77ec4.tar.gz |
Make cache bigger and longer lived.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/application.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex index 86b6c0c1e..6267d0695 100644 --- a/lib/pleroma/application.ex +++ b/lib/pleroma/application.ex @@ -15,9 +15,9 @@ defmodule Pleroma.Application do # Start your own worker by calling: Pleroma.Worker.start_link(arg1, arg2, arg3) # worker(Pleroma.Worker, [arg1, arg2, arg3]), worker(Cachex, [:user_cache, [ - default_ttl: 5000, + default_ttl: 25000, ttl_interval: 1000, - limit: 500 + limit: 2500 ]]) ] |