Is there a caching system in Julia?

In Elixir there’s something called ETS which is basically a caching system, I was wondering if there’s something like that in Julia?

I don’t know ETS, but if you are looking for memoization, there is

or you can easily implement something custom yourself.

Alright thank you :slight_smile:

Also read this about caching

1 Like