5 ms·
Using PostgreSql, I tend now to directly generate query result in json. It implies an architecture model where you put the business logic and type safety in th
by ontologiae 8y ago
Using PostgreSql, I tend now to directly generate query result in json.
It implies an architecture model where you put the business logic and type safety in the RDBMS.
It reduces the number of layers for a lot of functionalities.
- toasterlovin 8y agoHow does version control work for an architecture like this?
- diegoperini 8y agoIn my experience, migration scripts that include modifications to output JSON (as ALTER TABLE statements) are always tracked and programmed to be auto-executed on each version update.