-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for CACHES. #467
Conversation
Also, bump Django to 3.1. [[[[
Should we also move to multi-process mode for uwsgi @maxking ? https://github.com/maxking/docker-mailman/blob/main/web/mailman-web/uwsgi.ini#L17 |
@danil-smirnov yeah, I think we can safely bump the number of processes now. |
@maxking I'm not sure what processes/threads configuration is reasonable actually... I didn't hit any issue with the 1/2 setup. Do we really need to use multiple processes here?... |
It really depends on how much traffic do you get on your webserver. I think 2 workers with 2 threads each should suffice for most people. It might be good to have 2 workers to take advantage of 2 Cores and then spin off 2 threads each (threads are much cheaper resources wise, compared to workers) so we have some headroom for high traffic times. |
I wonder if Postorius image should have the same configuration @maxking ? |
We can probably do the same with Postorius, its not that much of an overhead. |
No description provided.