Re: Async views means dropping gunicorn gevent for uvicorn, affecting sync view performance

2023-04-16 Thread Fortune Osho
You can simply run gunicorn with unicorn workers... which is very performance using uvloop... test it performance against pure gunicorn... note that performance is not totally dependent on server used(a whole lot of things can affect performance like moddlewares, serialization etc) On Sun, Apr 16

Re: Django rest framework

2022-11-25 Thread Fortune Osho
It depend on what form of authentication you want to use e.g Session based authentication, token based. But would recommend token based authentication. Check out Django Rest Framework simple jwt On Fri, Nov 25, 2022 at 5:56 PM Pooja Kumari wrote: > Hello.. Can anybody help me with APIs in django

Re: makemigrations

2022-09-15 Thread Fortune Osho
In the new added field “logo” set default = None or specify a default value On Thu, Sep 15, 2022 at 8:38 PM shiva singh wrote: > Hello I am new in Django users group. I am using Django and faching a > problem when i do any changes in existing models after run makemigrations. > > > This is probl