Max Fang

Results 25 comments of Max Fang

Just want to express a +1 for the original proposal which makes the `INFO` log much more concise, and moves the pretty-printed, multi-line log to `TRACE`. My company is running...

Hi @xiaoyual666, I wrote that comment - happy to explain. There are several `Type`s of websockets messages that the exchange will return to us, defined here: https://github.com/fabianboesiger/ftx/blob/b7dbc9e10300bfd0eceb48f94ea1c32a0df2e26d/src/ws/model.rs#L39-L47 Whenever we `subscribe_or_unsubscribe`,...

Good point - if we e.g. try to subscribe to a new channel on a new Ws object and FTX never receives the subscribe message, we could be waiting forever...

I thought my colors weren't working, and then I tried the colors example in this repo as @d4h0 mentioned. Turns out that my colors actually *were* working, except that in...

Iterating on your idea @jakajancar, it turns out that if you call `into_response()` provided by the `Reply` trait, you can avoid the heap allocation. Given e.g. a handler that returns...

Just wanted to share that we updated our BDK fork to change `CACHE_ADDR_BATCH_SIZE ` from 100 to 1, and this reduced our total node startup time by over 10x -...

FWIW I hacked out a workaround using a number of refactors. Definitely too ugly to be upstreamed but it gets the job done if you really really need BDK's futures...

@diptanu you can integrate the changes from this PR into your own project with a patch like so: ```toml [dependencies] axum-server = "=0.6.0" [patch.crates-io] axum-server = { git = "https://github.com/grafbase/axum-server",...

I'm running into the same issue. Passing `--debug`, it looks like cargo watch is repeatedly parsing the `.gitignore` files for each crate in the workspace? Considering we have over 30...

Thanks for this; we are adopted these changes as a [patch](https://github.com/programatik29/axum-server/compare/master...lexe-app:axum-server:lexe-v0.6.0-2024_03_18) in our crate graph during our process of upgrading to [email protected]. Major parts of the ecosystem haven't upgraded to...