|
|
|
|
|
by crazygringo
487 days ago
|
|
> Removing the network latency is a massive gain, especially for small/medium apps, which is most sites. No it's not. Network latency is negligible, assuming your database isn't halfway across the world or something. And as soon as you have to scale to just two webservers, you've either got to implement a client-server network layer on top anyways, or else the complexity of a replication layer. Just start with Postgres or MySQL in the first place. It's just as performant, just as easy to set up, and can actually scale as you need it. Don't be "brave" when there isn't even any payoff involved. |
|
Yes but now you also have a network to maintain.
> Just start with Postgres or MySQL in the first place. It's just as performant, just as easy to set up
Yes it's easy to set up. But then you have to maintain it. It's another daemon that needs care.