Re: Django performances issue

2018-05-02 Thread prakash sharma
Hi @Julio I am also planning to go for the job/message queue, but for this we have to change the default follow so this not feasible at this moment for me. For now what can be the best approach. Like server scaling, worker count > On Wednesday, May 2, 2018 at 6:54:23 PM UTC+5:30, prakash shar

Re: Django performances issue

2018-05-02 Thread Julio Biason
Hi Prakash, Do you need to answer the PDF directly? I mean, can't you just use the API to async-ly create the PDFs (using Celery, for example) and just return a jobId of sorts? The use will, then, make calls to check the jobid status; when the PDF is done, the job is changed to complete and you le

Re: Django performances issue

2018-05-02 Thread Avraham Serour
How many workers do you have? What those requests do? Even 3 minutes sounds like too much, do they just query from the DB and render a template? How caching didn't help? did you count the cache miss/hit? What are you caching? On Wed, May 2, 2018 at 3:59 PM, prakash sharma wrote: > I have develop