Let’s put an end to the age-old database debate, shall we?
flowchart TD
B{Can you use SQLite?}
B -->|Yes| C[Use SQLite]
B -->|No| D{Can you use PostgreSQL?}
D -->|Yes| E[Use PostgreSQL]
D -->|No| F{Do you need a database at all?}
F --> |Maybe, I don't| Well...
F --> |Maybe, I don't| Well...
Have something to say? Join the discussion below π
Want to explore instead? Fly with the time capsule πΈ
You may also find these interesting
The Two Reasons I Prefer Passing Struct Pointers Around
·9 mins
Choosing consistency over performance.
Interfaces Are Not Meant for That
·7 mins
It’s time to ask ourselves how much abstraction in our Go code really makes sense.