Why Nostr? What is Njump?
2023-12-10 02:33:06

Jarkko Sakkinen on Nostr: In Rust programs one common theme, which is not great for optimizing memory ...

In Rust programs one common theme, which is not great for optimizing memory footprint, is the heavy use of collect(). Iterators are a great abstraction exactly for the reason that you can view items as a set without having to brute force deploy them as such in memory. One area where no language paradigm can protect against is the overuse of computing resource.

One good recipe against this e.g. in a commercial setting would be to set a constraint for core components to be no_std compatible and have total artistic freedom in user interfacing parts or e.g. storage backend interfacing part i.e. only in I/O code.

Then early steps are slower but sort of investments instead of debt when memory is considered early on…

There’s little gain with the added complexity of Rust to something like Go if this consideration is not done. Sometimes something like Go could do even a better job because then at least garbage collector considers memory constraints..

#rustlang
Author Public Key
npub1npg6ts4xz56xszqzuhkcdk6td72059mv7yu4pgskwaszzataxrdsa8jmll