View Source sidejob_config (sidejob v2.2.0)

Utility that converts a given property list into a module that provides constant time access to the various key/value pairs.

Example: load_config(test, [{limit, 1000}, {num_workers, 4}, {workers, [{test_1, test_2, test_3, test_4}]}]).

creates the module test such that: test:limit(). => 1000 test:num_workers(). => 16 test:workers(). => [{test_1, test_2, test_3, test_4}]}]

Summary

Functions

Link to this function

load_config(Resource, Config)

View Source