-1
votes
3answers
79 views

How to run periodical tasks in the system built with CQRS approach?

It turned out that I need to have some periodical tasks within my system which is run under Windows Azure worker role. I would like to emphasize that it may be any platform Azure, Amazon, in-house ...
7
votes
2answers
977 views

Do I use Azure Table Storage or SQL Azure for our CQRS Read System?

We are about to implement the Read portion of our CQRS system in-house with the goal being to vastly improve our read performance. Currently our reads are conducted through a web service which runs a ...
4
votes
1answer
340 views

CQRS: what backend to use for my View-Store?

My CQRS-based architecture currently has 4 components. It is more of a prototype so nothing is set in stone yet. CommandProcessor: Gets commands, executes them, etc. (duh ^^), publishes events. Is ...
3
votes
1answer
996 views

Differences between NCQRS and Lokad.CQRS

I am currently looking at CQRS frameworks to use for a project that will be hosted in Azure. I have read about Ncqrs and Lokad.CQRS and am currently a little bit confused. Will they both work with ...
5
votes
3answers
1k views

Multi-Tenant CQRS Architecture

My team is beginning implementation of a greenfield application, with a requirement for multi-tenancy. I have been doing a large amount of research on patterns for simple scalability, especially on ...
6
votes
4answers
794 views

Implementing set-based constraints in CQRS

I'm still struggling with what must be basic (and resolved) issues related to CQRS style architecture: How do we implement business rules that rely on a set of Aggregate Roots? Take, as an example, ...
3
votes
1answer
179 views

Can I architect a web app so it can be deployed to either the cloud or a dedicated server / VPS ? How?

Is there are an architecture versatile enough that it may be deployed to either a cloud server or to a dedicated (or VPS) server with minimal change? Obviously there would be config changes but I'd ...