xgeek116

xgeek116

Stroring public key in memory / cache

Hello,

I have created an Elixir library that checks the validity of a JWT token, but to do that the lib will fetch the public key from a remote server (the url of the remote server is stored as an env variable in the consumer application - config.exs because we can’t store vars in the lib).

My question is : how can I improve the process by storing the public key somewhere (avoid storing them in consumer applications ?), instead of fetching the key for every request.

Thanks

First Post!

Qqwy

Qqwy

TypeCheck Core Team

It depends a little bit on your use case.

If there is only a single public key you might need, i.e. it is a global value for the whole application, then you could use Application.put_env/Application.get_env.

If however you want to handle multiple values, like one per user in an application that might serve multiple users at the same time, then you probably want to use a caching library instead.
There are some great caching libraries which you could use on HexPM, the most well-known one probably being cachex, though there are many.

If you want to build something yourself, you might start with an Agent to store some common state in. (If speed ever becomes a problem, you could move on to :ets instead). But a caching library probably suffices.

Where Next?

Popular in Questions Top

vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
AngeloChecked
What learn first? Rust or Elixir Hi Elixir community! I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
AstonJ
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New

We're in Beta

About us Mission Statement