README.md
# glorage
[](https://hex.pm/packages/glorage)
[](https://hexdocs.pm/glorage/)


Gleam thread local storage
```sh
gleam add glorage
```
```gleam
import glorage
pub fn main() {
use <- glorage.run // init thread local storage
inc(1) // 2
inc(7) // 2, because it's cached inside thread local storage
use n <- glorage.with(inc) // ability to get thread local storage cached value, n is 2
}
fn inc(n) {
use <- glorage.once(inc) // make function cachable inside thread local storage
n + 1
}
```
Further documentation can be found at <https://hexdocs.pm/glorage>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```