My program is small enough that in TS/JS I’d normally just store the data in some global variable to be access from whatever elsewhere in the app. But with Rust from what I can tell this doesn’t seem to be a common practice. How should i handle this?

More specifically, I need to:

  1. program start, fetch data from my db (DONE)
  2. store this data somehow somewhere
  3. access said data (for read only in this use case)

Thanks for any insights here!

  • @nerdbloodOP
    link
    41 year ago

    I might not need global state, the more I think about it. I’ll start with passing a struct and see where that gets me, thanks!

    • @nous
      link
      31 year ago

      Using OnceCell for inviting some static resource, like a regex expression. Or for storing something like a internal cache for a function is ok. But I would avoid using it to hold a application wide state that anything can drop in and modify. Passing around application state where it is needed is generally much better and far easier to test things with.