存储器适配器
存储器
@type store_id() :: String.t()
@type store_key() :: atom() | String.t()
@type t() :: module()
@type value() :: map()
@callback restore(store_id(), store_key()) :: {:ok, value()} | any()
@callback store(store_id(), store_key(), value()) :: :ok | any()