Update: as confirmed in the bug I logged, this was fixed in Firefox 123! See also: Keep your Indexed DB keys and values small if you want good perform… ...more
Following on from Keep your Indexed DB keys and values small if you want good performance!, here is another thing I've learned about Indexed DB perfor… ...more
What a String is in Rust, and how they differ from &str. Strings are resizeable arrays of bytes that are guaranteed to be in UTF-8 format. &st… ...more
In our work recently on Element Web (specifically attempting to replace our encryption code with our cross-platform Rust implementation) we've noticed… ...more
Explanation of some of the most commonly used types in Rust: Vecs, which store lists of items, Boxes that allow us to own things that we keep on the h… ...more