I am currently using JSX to encode LoRaWAN messages. Here the values always have to be strings. I never want an array of integers.
The only way I found to enforce this was using list_to_atom("My String"). But Erlang will not garbage collect the atoms created. So after some time my program will fail.
So, please, identify how I can force JSX to output string values as strings.
I am currently using JSX to encode LoRaWAN messages. Here the values always have to be strings. I never want an array of integers.
The only way I found to enforce this was using list_to_atom("My String"). But Erlang will not garbage collect the atoms created. So after some time my program will fail.
So, please, identify how I can force JSX to output string values as strings.