Bob Weinand
Bob Weinand
While I agree on the idea of using value objects, I do not think that using exceptions is the correct way to handle the no-match case. This is a low-level...
@Manhim That it matches two routes is pretty normal, e.g. `/foo/bar/{dynamic}` and `/foo/{dynamic}`. Failing upon two matching routes is not really an option. And as long as you don't want...
I remember having had discussions with Levi and Daniel about unsharing (which led to its removal in the more current API design https://gist.github.com/rdlowrey/569996f23a436964d595) … The generic point was about sharing...
I'd prefer being safe here and be explicit (Exception).
Maybe you should blacklist and add another entry in case issues appear. That helps if it works with not listed SAPIs without first doing extra changes.
That's not an apcu issue, it's your OS having limits, checkout /proc/sys/kernel/shmmax (Maximum shared memory segment size you can allocate in a contiguous block.) Alternatively, might be possible that your...
Hmm. Well, judging by the react-mongodb library, it should be pretty easy to write your own driver for this using amp. If there is interest, I also may prototype such...
Yes. But I consider it most likely that we won't implement QUIC in PHP code, but use bindings via ext/ffi (e.g. quiche). There's some crypto embedded in QUIC, which isn't...
Hey @NickStallman, I agree, this is not correct. As a workaround, use `DD_TRACE_AGENT_URL="http://[2a05:d01c:806:8003:xxxx:xxxx:d572:58be]:8126"`. We will fix this issue soon.
Hey @joelharkes, To disable the built-in integration set `datadog.trace.laravel_enabled=0` in your INI. Then you should to be able to copy most code from https://github.com/DataDog/dd-trace-php/blob/master/src/Integrations/Integrations/Laravel/LaravelIntegration.php and just adapt it as you...