EventStore v0.16.0 EventStore.Config View Source
Provides access to the EventStore configuration.
Link to this section Summary
Functions
Get the data type used to store event data and metadata
Get the event store configuration for the environment
Get the connection pool module for postgrex
Normalizes the application configuration
Converts a database url into a Keyword list
Get the event store configuration for the environment
Get the serializer configured for the environment
Link to this section Functions
column_data_type() View Source
Get the data type used to store event data and metadata.
Supported data types are:
- "bytea" - Allows storage of binary strings.
- "jsonb" - Native JSON type, data is stored in a decomposed binary format that makes it slightly slower to input due to added conversion overhead, but significantly faster to process, since no reparsing is needed
default_postgrex_opts(config) View Source
Get the event store configuration for the environment.
get_config_integer(value, default \\ nil) View Source
get_config_value(value, default \\ nil) View Source
get_pool() View Source
Get the connection pool module for postgrex.
parse(config) View Source
Normalizes the application configuration.
parse_url(url) View Source
Converts a database url into a Keyword list
parsed() View Source
Get the event store configuration for the environment.
postgrex_opts(config) View Source
serializer() View Source
Get the serializer configured for the environment.