MOZGIII
MOZGIII
I have checked out the proposed implementation, and the approach of manually authoring the mapping seems suboptimal. It is very easy to make a mistake and for the mappings to...
> But if the do that we could also use [docs.rs/phf/latest/phf](https://docs.rs/phf/latest/phf/) for improved performance? 🤔 We'd need to bench
From the https://developer.mozilla.org/en-US/docs/Web/API/WebTransport it looks like FF has support for BYOB streams... I wonder what's going on there, and if I need to change anything in the code. What Firefox...
Thanks for researching this! I agree with your summary, Firefox had issues in the past when it comes to WebTransport implementation, and they claimed they've resolved them but it seems...
I was able to reproduce it in tests with `NO_HEADLESS=1 cargo test --target wasm32-unknown-unknown -p xwt-web-sys` and manually navigating Firefox to the printed URL
There is a relevant PR at wtransport btw: https://github.com/BiagioFesta/wtransport/pull/192. It might just be a server-side issue. I'll update xwt to the latest wtransport.
What backend do you use? Just to gather more info
I checked with https://github.com/BiagioFesta/wtransport/commits/2a5b37ee78cd967734ee0473eed3809888c1fdfb - same crash at Firefox. Firefox has BYOB marked as supported, but it clearly is not. We'll leave this open for a while, until either FF...
As of `131.0a1 (2024-08-19)` the tests are still failing. --- Without BYOB, the document memory may growing uncontrollably since you are potentially allocating a new buffer for every read. It...
The last issue can be solved with the current API by placing `Session` into `Arc` and providing a clone to each of the spawns; this is how the splitting would...