[akka-user] [akka-persistence] readjournal query by multiple tags

2016-10-31 Thread jsoeters
Is there a feature (planned?) to support querying the read journal by multiple tags. Typically projections in an event sourced application only update from a very small subset of the events. Say I have a UserProjection that creates/updates a UserReadModel from a UserRegistered event and all

[akka-user] Unit test akka persistence against the inmem journal

2016-07-25 Thread jsoeters
How can I get a handle to the inmem journal from my tests. I'm trying to write a simple test wrapper that looks something like this: given("an order") { Seq(OrderCreated(orderId=1234), ItemAdded(productId=123, quantity=5)) } when("removing an item") { RemoveItemCommand(orderId=1234,