The Postgres Operator easily lets you automate your Postgres in Kubernetes, whether it's one or thousands of instances.

Cut Out the Middle Tier: Generating JSON Directly from Postgres

submited by
Style Pass
2021-07-15 18:30:04

The Postgres Operator easily lets you automate your Postgres in Kubernetes, whether it's one or thousands of instances.

Integrated high availability PostgreSQL solution for enterprises with always on requirements.

Hardened, secure, access controlled PostgreSQL to meet advanced security requirements.

Too often, web tiers are full of boilerplate that does nothing except convert a result set into JSON. A middle tier could be as simple as a function call that returns JSON. All we need is an easy way to convert result sets into JSON in the database.

PostgreSQL has  built-in JSON generators  that can be used to create structured JSON output right in the database, upping performance and radically simplifying web tiers.

Fortunately, PostgreSQL  has such functions, that run right next to the data, for better performance and lower bandwidth usage.

Leave a Comment