[Answered ]-Multiple django scripts and servers with same project settings

2👍

This is true and the recommended way to scale Django beyond one server. Synchronization problems may arise if you are using LocMemCache (limited to local memory), or saving uploaded files with FileField, which saves files to the local filesystem by default. Other similar issues may also crop up.

👤sye

Leave a comment