You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JSON decoding is currently done using keys: :atoms which is a bit problematic, since we have dynamic keys in some instances so the number of atoms is not bounded.
You can use the keys: :atoms variant to make sure all atoms are created as needed. However, unless you absolutely know what you're doing, do not do it. Atoms are not garbage-collected, see Erlang Efficiency Guide for more info:
Atoms are not garbage-collected. Once an atom is created, it will never be removed. The emulator will terminate if the limit for the number of atoms (1048576 by default) is reached.
The text was updated successfully, but these errors were encountered:
JSON decoding is currently done using
keys: :atoms
which is a bit problematic, since we have dynamic keys in some instances so the number of atoms is not bounded.From https://github.com/devinus/poison:
The text was updated successfully, but these errors were encountered: