L. Kärkkäinen
L. Kärkkäinen
Did you check if `uvloop` also supports this and whether there is any benefit of using BufferedProtocol? Sanic uses uvloop instead of asyncio whenever possible, as that runs much faster...
Works for me. Thanks for the quick fix! Note: `url_prefix` should end with a slash for blueprints intended to run as a folder (or at site root), otherwise `""` route...
You just added a UNIX subsystem and entr (doesn't seem to be available on my package manager) to the requirements, to implement a reloader that is worse than Sanic's. Sanic...
@ashleysommer What is the distinction between WebsocketClosed and WebsocketCancelled from an app developer standpoint? Looks like it is all down to random chance of socket closing timing. Using any sort...
I considered this in the Trio fork I worked on, and made `workers=0` mean that it runs in the main process, while `workers=1` spawns a subprocess for the single worker....
I don't remember the exact state of CLI flags in 22.3, but it would probably then make sense to have `--debug` imply `workers=0` by default, while `--dev` sticks to `workers=1`...
I am leaning more and more towards not spawning any workers unless using `--fast`. But probably some other developers/users should weigh in. I always run with multiple workers anyway, and...
All that sounds good. Any chance of having a pathway to fixing Windows (or MacOS) where forking is not possible?
The title is wrong, you need to divide 16 bit PCM by 32767, not by 2^16. M4A is audio is AAC compressed, so you'll need to decode first and then...
>I meant to write (2^16-1) instead of 2^16 You want `2**15 - 1` (not 16) because **signed** 16 bit integer has range from -32768 to 32767, and the most negative...