This would tune the performance, because in current implementation :ets is created without read_concurrency which makes all encryptions and decryptions synchronous.
We can:
- use
read_concurrency: true
- use
:persistent_term instead of :ets
I can implement this issue if you argee with this suggestion