|
|
|
|
|
by ioddly
3073 days ago
|
|
Do not assume that you necessarily need to make things much more complex in order to scale to a thousand users. I have several client projects running on flask + sqlite. There are ways you could simulate a lot of users at once, if you're worried about it. For running multiple processes, I use gunicorn with an nginx proxy. Requires little to no additional code added to your application. |
|