From 35c1cf1805b94d27d0f447ff1804f7abb2d19742 Mon Sep 17 00:00:00 2001 From: Charles-Axel Dein Date: Thu, 25 Feb 2016 12:57:14 +0100 Subject: [PATCH] Add database --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 04647a9..e7e64f3 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ - [Must-read articles](#must-read-articles) - [Things to do](#things-to-do) - [Coding](#coding) + - [Managing the database](#managing-the-database) - [Testing](#testing) - [Things to know](#things-to-know) - [Know your editor](#know-your-editor) @@ -53,6 +54,11 @@ I've found these books incredibly inspiring: * [Write code that is easy to delete, not easy to extend](http://programmingisterrible.com/post/139222674273/write-code-that-is-easy-to-delete-not-easy-to) * [Lessons learned writing highly available code](https://medium.com/imgur-engineering/lessons-learned-writing-highly-available-code-7eaf3d7aae00#.u7c4j6hac) +### Managing the database + +* [Safe Operations For High Volume PostgreSQL](https://www.braintreepayments.com/blog/safe-operations-for-high-volume-postgresql/) (this is for PostgreSQL but works great for other db as well). +* [Zero downtime database migrations](https://blog.rainforestqa.com/2014-06-27-zero-downtime-database-migrations/) (code examples are using Rails but this works great for any programming language) + ### Testing * [Testing Strategies in a Microservices