semmitmondo
How to decode a JSON object into a, for instance, keyword list while preserving the same key order that the JSON string uses?
Elixir maps lose this information because of the underlaying Erlang map implementation.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
aseigo
According to the JSON specification, JSON objects are unordered. So if you get the same ordering, it is entirely coincidental or an implementation detail of the underlying library. But you can not rely on ordering of the entries there since they are, by specification, not ordered.
You may want to considering using a list instead if the ordering is absolutely required.
OvermindDL1
Precisely this. JSON specifies that objects are unordered but array’s are ordered, so if order is important then it should be an array, not an object.
albertored
I know specification says JSON objects are unordered but sometimes preserving the order can be useful.
Take for instances a situation where you want to read an external JSON file, apply some small changes and write it back preserving the order so to not create large diffs (the file can be under version control).
For instance in python you can do this with this code:
In Elixir I am only able to write JSON objects in a custom order by using
Keywordinstead ofMapbut I haven’t find a way of reading a JSON object into aKeyword.LostKobrakai
In
jasonit seems like objects are actually decoded into a list until the whole object is read and only at that moment the list is converted to a map:https://github.com/michalmuskala/jason/blob/v1.2.2/lib/decoder.ex#L284
But given jason seems to want to be spec compliant I’m not sure it would accept changing that.
albertored
Thanks, I am able to use this
:jasonimplementation detail to get what I want.It is a very far from optimal solution, surely not performant and relies on the order in which keys are decoded by Jason but it seems to work for my needs (it’s more like a script than something that should be done a lot of times per second).
I put it here just for people that may have my same requirements but I wrote it without optimizing it so be kind with your comments
Edited as per @LostKobrakai suggestion
JeyHey
How do you write the loaded json back? Wouldn’t the order of the keys be not deterministic in this step?
albertored
By using
Jason.Encode.keyword/2. This function preserves the order of theKeywordin encoding it.LostKobrakai
Why combine the data for the key into a string just to need a regex to separate it again. You can have a key like
{count, key}in elixir maps.albertored
This is exactly what I mean, I wrote this “without thinking” to much, just to see if it can work. Thanks for your suggestion!
thiagoramos
By the way I had a problem where I had to get the json ordered.
I found out we can use
Jason.decode(json_string, %{objects: :ordered_objects})