Paul Loyd
Paul Loyd
In CH 22.10.2.11: ``` CREATE TABLE test (date Date32) ENGINE = MergeTree ORDER BY date; INSERT INTO test_time__date32.test(date) VALUES ('1900-01-02'), ('1969-01-01'), ('1970-01-01'), ('2000-01-01') SELECT date, toString(date), toInt32(date) FROM test; Query...
@alexey-milovidov Stored in `native`, ok. But does it convert to LE while sending using Native/RowBinary formats? Because now, I rely on LE encoding in RowBinary deserialization in my CH client...
For large applications with deep hierarchy of components, yew can show the result worse than redux-like because yew has no alternative to `shouldComponentUpdate()`: it makes full update every frame.
Laziness via immutable is one of the ways to implement idea of `componentShouldUpdate` (no matter automatically or manually). I mean, React+Redux and Elm have equivalent optimizations. Yes, the use of...
Another thing about performance: I think yew should separate the stage of building patch and the stage of applying patch (like in [virtual-dom](https://github.com/Matt-Esch/virtual-dom) library). It allows to apply patches in...
Thanks for the fast response! Let's focus on the problem of exposing several metrics from one place. For every `counter!("some_metric")` call I want to produce from 0 to 2 different...
The main disadvantage of the suggested approach is that the metric set is unbound: all metrics produced by user-written code should use the same approach, not only provided by `elfo`...
> In 0.18 You're considering the usual usage of `metrics`, not the described by me. In my case, `CounterGroup` should include more information for re-registering, if the config's epoch is...
I'm going to update `metrics` in `elfo` next week, now it seems to cover most of my questions, maybe all. I'll be back with feedback. Thanks a lot.
`KB` by default looks strange to me. Never have I met a programmer thinking in decimal units instead of binary units.