ValiDrv

Results 19 comments of ValiDrv

Your Singleton is wrong... if you have multiple workers, you can end up with a few copies of one, or a different one in each thread. And when it comes...

You need to check out laravel-swoole and see how they work with facades. The reason those don't work, is because your static variable was meant to be self contained within...

This can only stop the coroutine if it's in the middle of some IO tho. (not your fibonacci function) I achieved this in a simpler/not so generic way: - WaitGroups...

Same on Linux log-102 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux statsd does not listen on port 8125

Are you sure that works when the network drops, and not just if the socket is connected? ex: swoole_event_addConnected

Thank you for renaming the parameter. in v 5.0.1 But please make sure to add it to the TAG release notes next time, since this is a breaking change...

I think that would defeat the purpose of those 3rd party libraries... since they MUST be made aware of the Swoole/Coroutines and if they were designed like that in the...

Problem is, you might have to clean up some connections and whatnot, so if you just stop executing code after the timeout happens in the next context change, you end...

You can't really do that, since you might have 10001 more levels/coroutines/context switches in your request function, and you would be to keep track and check that `$killRequest` variable everywhere.