Hacker News new | ask | show | jobs
by fleetfox 3369 days ago
And why would you want it? What is your use case? Making something async introduces a lot of complexity with no obvious benefit. It's also not as simple as it looks. For instance all db access in django is synchronous at the moment and changing that is not trivial since it requires swapping out whole layer.

I don't read the mailing lists but i'm not sure if it's even considered.

If you want async requests today you can take a look at channels: http://channels.readthedocs.io/en/latest/

1 comments

I want to return values from external REST APIs to the client. Is it really that hard with the new async/await syntax?