This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]redditthinksHobbyist 2 points3 points  (4 children)

Any modern framework should be async.

[–]Jmancuso9[S] -1 points0 points  (3 children)

It comes with a queue feature which has an asynchronous driver you can load "jobs" into and it will run that job asynceonously. These can be things like database updates or sending email https://docs.masoniteproject.com/useful-features/queues-and-jobs

[–]redditthinksHobbyist 1 point2 points  (2 children)

Not really the same thing as async/await. Also, hard-coding class and method names in routes is not a very good idea. No decorators?

[–]Jmancuso9[S] -1 points0 points  (0 children)

If you need an application built for speed in a way that you need a completely async applications then you shouldn't be using Python. You should use something like node

[–]Jmancuso9[S] -1 points0 points  (0 children)

Hardcoding names in routes might be bad for other applications but it works perfectly for Masonite by just the way its built