diff options
author | lain <lain@soykaf.club> | 2020-03-02 17:00:04 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-03-02 17:00:04 +0000 |
commit | 4c02e049358441529c54a72cd11f1c81ee897d49 (patch) | |
tree | 87a22ce51cb12c7f521dee29f3171eac602b658b /docs/installation | |
parent | 45b08ca1665920564c9daf35a96e93dff031a649 (diff) | |
parent | e4804137b3b5d269515bc40b9f173a1fc8931014 (diff) | |
download | pleroma-4c02e049358441529c54a72cd11f1c81ee897d49.tar.gz pleroma-4c02e049358441529c54a72cd11f1c81ee897d49.zip |
Merge branch 'prepared-statements-settings' into 'develop'
Prepared statements settings
See merge request pleroma/pleroma!2238
Diffstat (limited to 'docs/installation')
-rw-r--r-- | docs/installation/otp_en.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/installation/otp_en.md b/docs/installation/otp_en.md index aab5197a2..32551f7b6 100644 --- a/docs/installation/otp_en.md +++ b/docs/installation/otp_en.md @@ -73,6 +73,15 @@ rc-service postgresql restart systemctl restart postgresql ``` +If you are using PostgreSQL 12 or higher, add this to your Ecto database configuration + +```elixir +prepare: :named, +parameters: [ + plan_cache_mode: "force_custom_plan" +] +``` + ### Installing Pleroma ```sh # Create a Pleroma user |