Skip to content

Managed vs Serverless, SQL explained - #3111

Open
aishwaripahwa12 wants to merge 19 commits into
stardustfrom
managed-postgres-serverless-databases-sql-explained
Open

Managed vs Serverless, SQL explained#3111
aishwaripahwa12 wants to merge 19 commits into
stardustfrom
managed-postgres-serverless-databases-sql-explained

Conversation

@aishwaripahwa12

Copy link
Copy Markdown
Contributor

Latest SEO blogs

@appwrite

appwrite Bot commented Jul 20, 2026

Copy link
Copy Markdown

Appwrite Website

Project ID: 69d7efb00023389e8d27

Sites (1)
Site Status Logs Preview QR
 website
69d7f2670014e24571ca
Failed Failed View Logs Preview URL QR Code

Website (appwrite/website)

Project ID: 684969cb000a2f6c0a02

Sites (1)
Site Status Logs Preview QR
 website
68496a17000f03d62013
Queued Queued View Logs Preview URL QR Code


Tip

Sites support three domain rule types: Active deployment, Git branch, and Redirect

@greptile-apps

greptile-apps Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR adds two new SEO blog posts and their cover assets.

  • New managed Postgres versus serverless databases article.
  • New SQL fundamentals article with SQL and JavaScript examples.
  • New cover images and asset cache entries for both posts.

Confidence Score: 5/5

This looks safe to merge.

  • No blocking issues found in the changed code.

Important Files Changed

Filename Overview
.optimize-cache.json Adds cache entries for the two new blog cover assets.
src/routes/blog/post/managed-postgres-vs-serverless-databases-which-one-should-developers-choose/+page.markdoc Adds the managed Postgres versus serverless databases blog post.
src/routes/blog/post/sql-explained-how-developers-query-databases/+page.markdoc Adds the SQL fundamentals blog post.
static/images/blog/managed-postgres-vs-serverless-databases-which-one-should-developers-choose/cover.avif Adds the cover image for the managed Postgres article.
static/images/blog/sql-explained-how-developers-query-databases/cover.avif Adds the cover image for the SQL article.

Reviews (4): Last reviewed commit: "Apply suggestion from @aishwaripahwa12" | Re-trigger Greptile


A SQL query reads like a sentence. To get every column for every user, you write:

```sql

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Unsupported SQL Fence Language

When this post renders, the sql fence language is passed to the existing code highlighter, but SQL is not registered in the supported language set. The examples can render without the expected syntax highlighting and may emit highlighter warnings on a SQL-focused article.

Prompt To Fix With AI
This is a comment left during a code review.
Path: src/routes/blog/post/sql-explained-how-developers-query-databases/+page.markdoc
Line: 59

Comment:
**Unsupported SQL Fence Language**

When this post renders, the `sql` fence language is passed to the existing code highlighter, but SQL is not registered in the supported language set. The examples can render without the expected syntax highlighting and may emit highlighter warnings on a SQL-focused article.

How can I resolve this? If you propose a fix, please make it concise.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Fix in Claude Code Fix in Codex

Comment thread src/routes/blog/post/sql-explained-how-developers-query-databases/+page.markdoc Outdated
Comment thread src/routes/blog/post/sql-explained-how-developers-query-databases/+page.markdoc Outdated
Comment thread src/routes/blog/post/sql-explained-how-developers-query-databases/+page.markdoc Outdated
Comment thread src/routes/blog/post/sql-explained-how-developers-query-databases/+page.markdoc Outdated
@adityaoberai
adityaoberai changed the base branch from main to stardust July 20, 2026 12:49
@@ -0,0 +1,125 @@
---
layout: post
title: "Managed Postgres vs. serverless databases: Which one should developers choose?"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be dedicated vs serverless

Serverless database offerings have to be managed by the cloud provider so this piece doesn't make sense

Comment on lines +209 to +213
# Start querying your data with Appwrite Databases

Understanding SQL gives you a mental model that applies to nearly every database you will ever touch: describe the data you want, and let the engine do the work. Whether you write raw queries or use a Query API, the core ideas of filtering, joining, aggregating, and transactions stay the same.

If you want that querying power without managing a database server yourself, [Appwrite Databases](/docs/products/databases) gives you filtering, sorting, and pagination through a clean [Query API](/docs/products/databases/queries), backed by a relational engine and wrapped in permissions and realtime. It is a fast way to put everything in this post into practice.

@adityaoberai adityaoberai Jul 27, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be about our native databases, not our shared database APIs.

answer: Some serverless databases can have cold starts when compute scales to zero and needs to resume. This can add latency to the first query after an idle period, so it matters for latency-sensitive applications.
- question: Is serverless Postgres the same as managed Postgres?
answer: No. Serverless Postgres is still managed, but it uses automatic scaling and usage-based billing. Traditional managed Postgres runs as a provisioned, always-on instance with fixed capacity.
- question: Is managed Postgres better than a serverless database?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- question: Is managed Postgres better than a serverless database?
- question: Is managed Postgres better than a serverless database?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants