fulcro

roklenarcic 2026-04-01T08:56:38.867649Z

This may be silly, but why is the DB table for entities shaped:

{:entity/id {1 {....
but not
{[:entity/id 1] {
is there a practical reason for it?

tony.kay 2026-04-01T14:40:26.627139Z

(get-in db ident)

tony.kay 2026-04-01T14:41:25.524559Z

keys in the top level map won’t sort (unless you resort to a sorted-map)..so an ident-based key would be very hard to find things (visually)

😮 1