forked from AkkomaGang/akkoma
cache ap_id in id instead of caching user two times
This commit is contained in:
parent
76f80940da
commit
5a08dee379
1 changed files with 9 additions and 1 deletions
|
@ -445,7 +445,15 @@ def get_cached_by_ap_id(ap_id) do
|
|||
|
||||
def get_cached_by_id(id) do
|
||||
key = "id:#{id}"
|
||||
Cachex.fetch!(:user_cache, key, fn _ -> get_by_id(id) end)
|
||||
|
||||
ap_id =
|
||||
Cachex.fetch!(:user_cache, key, fn _ ->
|
||||
user = get_by_id(id)
|
||||
Cachex.put(:user_cache, "ap_id:#{user.ap_id}", user)
|
||||
{:commit, user.ap_id}
|
||||
end)
|
||||
|
||||
get_cached_by_ap_id(ap_id)
|
||||
end
|
||||
|
||||
def get_cached_by_nickname(nickname) do
|
||||
|
|
Loading…
Reference in a new issue