where: fragment("? @> ?", object.data, ^%{id: ap_id}))
end
+ def get_cached_by_ap_id(ap_id) do
+ if Mix.env == :test do
+ get_by_ap_id(ap_id)
+ else
+ key = "object:#{ap_id}"
+ Cachex.get!(:user_cache, key, fallback: fn(_) -> get_by_ap_id(ap_id) end)
+ end
+ end
+
def context_mapping(context) do
%Object{data: %{"id" => context}}
end
def context_to_conversation_id(context) do
{:ok, id} = Repo.transaction(fn ->
- with %Object{id: id} <- Object.get_by_ap_id(context) do
+ with %Object{id: id} <- Object.get_cached_by_ap_id(context) do
id
else _e ->
changeset = Object.context_mapping(context)