Better Programming

Advice for programmers.

Follow publication

Member-only story

How to Choose the Right Database for Your App

Dhananjay Trivedi
Better Programming
Published in
9 min readDec 30, 2020

Analytics being shown on a screen.

Working on new projects is always super exciting — we have the freedom to design and architect the things any way we want. But this planning, when not done properly, can cause us a lot of pain in the future.

Choosing your app database is one of the critical decisions you’ll have to make, and with this article, I intend to introduce you to various database options — along with listing some pros and cons to help you make wiser database decisions.

KeyValue

Our database is structured just like a JSON object — every key is unique, and each key points to some value.

The key user:73:name points to the user Dhananjay Trivedi, for example.

It keeps the data in the memory, which is very fast but comes with a capacity limit, so you can’t store a huge amount of data. And since there’s no disk involved, everything is blazing fast.

There are no queries or joins involved, so there isn’t much data modelling to worry about. Since there’s no schema, the developers always have the flexibility to change data as they may like.

Pro/con chart. Pros: Blazing fast, simple, flexible. Cons: Not suitable for large complex data.

When to use this technique

  • This technique is mostly used as a caching mechanism for when some part of the data is being very frequently fetched and observed
  • Hence, the key–value technique is widely used along with other databases as a caching mechanism
Redis and Memcached are examples of databases that use this technique.

Wide Column

This is like key–value but on steroids. The value is modified to store a set of columns instead of just plain data.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Dhananjay Trivedi
Dhananjay Trivedi

Written by Dhananjay Trivedi

Android | Flutter | App Developer | Product Management | Prompt Engineer who loves writing and sharing knowledge

Responses (11)

Write a response