yggdrasil v4.0.0 Yggdrasil.Settings View Source

This module defines the available settings for Yggdrasil.

Link to this section Summary

Functions

Module registry table name

Process registry

Yggdrasil publisher options. This options are for :poolboy. Defaults to [size: 5, max_overflow: 10]

Pub-sub adapter to use for channels. Default value is Phoenix.PubSub.PG2

Pub-sub name. By default is Yggdrasil.PubSub

Pub-sub options. By default are [pool_size: 1]

Link to this section Functions

Link to this function yggdrasil_module_registry() View Source

Module registry table name.

config :yggdrasil,
  module_registry: :yggdrasil_registry
Link to this function yggdrasil_process_registry() View Source

Process registry.

config :yggdrasil,
  registry: ExReg
Link to this function yggdrasil_publisher_options() View Source

Yggdrasil publisher options. This options are for :poolboy. Defaults to [size: 5, max_overflow: 10].

config :yggdrasil,
  publisher_options: [size: 5, max_overflow: 10]
Link to this function yggdrasil_pubsub_adapter() View Source

Pub-sub adapter to use for channels. Default value is Phoenix.PubSub.PG2.

config :yggdrasil,
  pubsub_adapter: Phoenix.PubSub.PG2

Pub-sub name. By default is Yggdrasil.PubSub.

config :yggdrasil,
  pubsub_name: Yggdrasil.PubSub
Link to this function yggdrasil_pubsub_options() View Source

Pub-sub options. By default are [pool_size: 1].

config :yggdrasil,
  pubsub_options: [pool_size: 1]