summaryrefslogtreecommitdiff
path: root/src/ejabberd_redis_sup.erl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2022Badlop2022-02-111-1/+1
|
* Update newest copyright year to 2021 (#3464)Badlop2021-01-271-1/+1
|
* Fix most EDoc errors, even if that's not used nowadays apparentlyBadlop2020-05-111-1/+1
|
* Update copyright to 2020 (#3149)Badlop2020-01-281-1/+1
|
* Fix race condition in Redis/SQL supervisors startupEvgeny Khramtsov2019-10-291-1/+4
|
* Correctly handle unicode in log messagesEvgeny Khramtsov2019-09-231-1/+1
|
* Improve hooks validator and fix bugs related to hooks registrationEvgeny Khramtsov2019-07-291-1/+7
|
* Use new configuration validatorEvgeny Khramtsov2019-06-141-72/+28
|
* Update copyright to 2019 (#2756)Badlop2019-01-081-1/+1
|
* Fix some dialyzer warningsEvgeny Khramtsov2018-09-091-8/+1
|
* Get rid of ejabberd.hrl headerEvgeniy Khramtsov2018-06-141-2/+1
| | | | | | | | | The header consisted of too many unrelated stuff and macros misuse. Some stuff is moved into scram.hrl and type_compat.hrl. All macros have been replaced with the corresponding function calls. TODO: probably type_compat.hrl is not even needed anymore since we support only Erlang >= OTP 17.5
* Update copyright datesEvgeniy Khramtsov2018-01-051-1/+1
|
* Get rid of detection of modules' db_type detectionEvgeniy Khramtsov2017-05-211-7/+1
| | | | | | The detection sometimes leads to errorneous warnings. We need to improve it later. For now I just remove the detection as it doesn't fully work anyway.
* Don't list 'redis_pool_size' option multiple timesEvgeniy Khramtsov2017-05-081-2/+1
|
* Add type specs for Module:opt_type/1Evgeniy Khramtsov2017-05-081-0/+8
|
* Don't validate an option in ejabberd_config:get_option() functionsEvgeniy Khramtsov2017-04-291-13/+4
| | | | | | | | | | | | | The commit introduces the following changes: * Now there is no need to pass validating function in ejabberd_config:get_option() functions, because the configuration keeps already validated values. * New function ejabberd_config:get_option/1 is introduced * Function ejabberd_config:get_option/3 is deprecated. If the function is still called, the second argument (validating function) is simply ignored. * The second argument for ejabberd_config:get_option/2 is now a default value, not a validating function.
* Don't re-define validation functions in multiple placesEvgeniy Khramtsov2017-04-281-0/+1
|
* Use cache in front of Redis/SQL RAM backendsEvgeniy Khramtsov2017-04-141-1/+1
|
* Add Redis pool supportEvgeniy Khramtsov2017-04-061-0/+159
Fixes #1624