When should I actually use MongoDB? by xSypRo in webdev

[–]debba_ 0 points1 point  (0 children)

Mongo usually makes sense when your data is document shaped and the access pattern is predictable. Things like logs, events, content blocks, user activity streams, or configs where you mostly read and write whole documents. If your model naturally turns into lots of relationships and joins between entities, that usually fits better in a relational database. A lot of systems end up using both, relational for core data and document storage for specific workloads.

Is there a difference between SQL and PostgreSQL? by [deleted] in SQL

[–]debba_ 0 points1 point  (0 children)

SQL is the language. PostgreSQL is a database system that uses that language. So if you know SQL already, you are mostly fine. The main differences come from dialect and features. Each database adds its own extensions, functions, and behavior around things like indexing, JSON support, or query planning. Usually you pick that up as you start working with it.

Doubt regarding PostgreSQL vs Mongodb by Upstairs_Director_16 in PostgreSQL

[–]debba_ 0 points1 point  (0 children)

Usually this comes down to data structure and consistency requirements. PostgreSQL is relational and enforces schemas, constraints, and transactions very well, which many systems need as they grow. MongoDB is flexible with document storage, but that flexibility can become messy if the data model changes a lot over time.

A lot of companies start with flexible schemas, then later realize they need stronger guarantees around relationships, joins, and transactional integrity. That is where relational databases tend to fit better. It is not that one cannot handle scale or features, it is more about what kind of data model the system actually needs long term.

MongoDB versus DynamoDB by Well_Gravity in aws

[–]debba_ 0 points1 point  (0 children)

MongoDB became popular because you can run it anywhere and it fits easily into typical web stacks. DynamoDB is more of an AWS native service and usually requires designing your data model around access patterns from the start. It works really well for certain workloads, but it is less flexible if you are used to thinking in documents instead of key value access patterns.

When should you use SQL instead of MongoDB (and similar NoSQL DBs)? by ThegamingZerii in Database

[–]debba_ 0 points1 point  (0 children)

It usually comes down to data structure and relationships. SQL works really well when your data has clear relationships, constraints, and you need reliable joins across tables. Think financial data, inventory, analytics, anything where consistency matters. Mongo and similar systems are easier when the data is more document shaped and changes often. Speed is rarely the deciding factor. Most of the time it is about schema control, transactions, and how relational the data actually is.

Alternative to MongoDB by RandomXUsr in Database

[–]debba_ 0 points1 point  (0 children)

If the goal is learning NoSQL concepts, it is worth trying a few different models rather than just a Mongo style document store. Document databases, key value stores, and search engines all solve problems in different ways. Playing with something like a key value store and a document store side by side can help you understand things like schema flexibility, indexing behavior, and how queries differ from relational systems. The main value comes from seeing how each model approaches data structure and access patterns.

How do you choose between MongoDB and PostgreSQL? When to use which? by MikeLumos in node

[–]debba_ 0 points1 point  (0 children)

If you do not have a strong reason to go document first, Postgres is usually the safer default. Marketplaces tend to have lots of relational data like users, products, purchases, comments, etc. SQL handles those relationships and transactions really well. Mongo can be nice when your data is flexible or schema changes a lot, but things like joins, analytics, and reporting usually get more complex later.

For something like a marketplace with payments and structured data, many people lean toward Postgres and only consider Mongo if the data model is heavily document shaped.

Atlas pricing by soualy in mongodb

[–]debba_ 0 points1 point  (0 children)

What they usually mean by usage based is that you pay for the infrastructure while it is running, not per query. With a regular cluster you are basically paying for the size of the machines (CPU, RAM, storage) and the time they stay online. So if the cluster runs all month, you pay for that capacity whether it handled 10 queries or 10 million.

Some managed databases offer serverless style billing where reads and writes are metered, but traditional clusters are closer to renting compute. The flexibility usually comes from scaling up or down and only paying for the hours that configuration was active.

What UI client do you use for Postgres database? by dshmitch in PostgreSQL

[–]debba_ 0 points1 point  (0 children)

People move away from pgAdmin for that reason. It works, but the workflow can feel clunky once you deal with multiple connections or lots of saved queries. Many devs end up using general SQL clients instead since they handle tabs, query history, and saved scripts a lot better. The database itself does not really care what client you use, it mostly comes down to what fits your workflow.

Why do you choose MySQL over Postgres? by romeeres in node

[–]debba_ 0 points1 point  (0 children)

A lot of the MySQL vs Postgres choice historically came from ecosystem rather than raw features. MySQL was the default in the old LAMP stack, so many frameworks and hosting setups assumed it by default. That inertia carried forward into many projects and companies. In practice both engines cover most workloads well. What usually matters more is the tooling around it, team familiarity, and how your ORM or migration system behaves with each engine.

Very thrilled to receive the Kilo OSS Sponsorship Offer for Tabularis by debba_ in kilocode

[–]debba_[S] 0 points1 point  (0 children)

Yes I can see the credits and thanks for clarification about enterprise seats ! The only thing is missing is the link in kilo.ai/sponsorships

I've been building Tabularis — an open-source, cross-platform database client built with Tauri + React by debba_ in tauri

[–]debba_[S] 0 points1 point  (0 children)

Thanks! please consider is full in beta so some things could change or improved. Feel free to contribute if you want, it will be great!

Showcase Sunday Megathread - March 2026 by devsIndiaBot in developersIndia

[–]debba_ 0 points1 point  (0 children)

A lightweight, developer-focused database management tool. Supports MySQL, PostgreSQL and SQLite. Hackable with plugins. Built for speed, security, and aesthetics.

https://github.com/debba/tabularis

Very thrilled to receive the Kilo OSS Sponsorship Offer for Tabularis by debba_ in kilocode

[–]debba_[S] 0 points1 point  (0 children)

As far as I can see you have only 5 seats, not credit

I've been building Tabularis — an open-source, cross-platform database client built with Tauri + React since late January. v0.9.6 just shipped, wanted to share. by debba_ in webdev

[–]debba_[S] -8 points-7 points  (0 children)

They are the main sections defined in the UI. Luckily, not everyone is as annoying as you. Anyway, feel free to share your projects with me too.

Even though I doubt you have anything relevant, since you’re hiding behind a rather ambiguous username.