Discussion:
Developing Asynchronous REST Webservices
Abhijit Kumar
2018-06-02 05:33:33 UTC
Permalink
Hi ,



I am newbie on Django platform and trying to use Django-rest-framework for
developing asynchronous REST web services. Searching on internet points me
to using ‘Celery’, but seems little complex. Do we have any simple way to
create asynchronous REST web services using Django-rest-framework? Thanks
for your help in advance!



Thanks,

Abhijit
--
You received this message because you are subscribed to the Google Groups "Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-rest-framework+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
hocul Kwak
2018-07-10 02:12:02 UTC
Permalink
Hello,

Simple way to create asynchronous REST web services.

Use threads.
It's really easy to run any function in its own thread.
Sharing data is if not easy at least simple.
Post by Abhijit Kumar
Hi ,
I am newbie on Django platform and trying to use Django-rest-framework for
developing asynchronous REST web services. Searching on internet points me
to using ‘Celery’, but seems little complex. Do we have any simple way to
create asynchronous REST web services using Django-rest-framework? Thanks
for your help in advance!
Thanks,
Abhijit
--
You received this message because you are subscribed to the Google Groups "Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-rest-framework+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...