unitario
unitario

Reputation: 6535

In an Windows Azure application using CQRS architecture, what is the optimal choice for the read and write databases?

Building an application in Windows Azure with a CQRS architecture, what would be the optional storage solution for the read and write databases, if you are looking for maximum performance?

Currently Windows offer several solutions, such as:

Upvotes: 1

Views: 676

Answers (1)

Dennis Traub
Dennis Traub

Reputation: 51624

This depends on a few factors. Especially the write side depends on whether you use Event Sourcing or not.

(Edit: just re-read your question. Must have overlooked the event store bit.)

Have a look at Lokad.CQRS for an Azure-based example: http://lokad.github.com/lokad-cqrs/

Upvotes: 2

Related Questions