Matthias Wahl
Matthias Wahl
This library might be a good tool for obtaining system metrics: https://github.com/heim-rs/heim
This is one part of this RFC: https://github.com/tremor-rs/tremor-rfcs/pull/46
I am gonna update this RFC to not break the current 'NetAddress' methods.
I updated this PR and deliberately decided for introducing a breaking change in `NetAddress`. It just didn't seem reasonable to still return the raw representation from `NetAddress.ipv4_addr()` and not the...
`pow` is only defined on `FloatingPoint`, as well as `powi` which are implemented using http://llvm.org/docs/LangRef.html#llvm-pow-intrinsic and http://llvm.org/docs/LangRef.html#llvm-powi-intrinsic. There is no `pow` in C or C++ as well that operates on...
Maybe, if this is going to be implemented, [Exponentiation by Squaring](https://en.wikipedia.org/wiki/Exponentiation_by_squaring) is a good candidate.
2. Would it make sense to roll our own threadpool for blocking io operations and integrate it into the existing asio implementation. That would e.g. mean we register an asio...
@SeanTAllen or @slfritchie could you elaborate on the concept of dirty schedulers? Would that basically mean, we flag behaviours based on whether they do blocking IO and depending on that...
Could we restrict the rule mentioned above a bit more and say, that only parameters should be able to shadow members, not `let` or `var` variables? I have to admit,...
There are at least two ways how to approach this problem: **Custom Defines** The first way would be using custom defined with the ponyc flag `--define`. Those defines don't have...