Per Wiklander

Results 17 comments of Per Wiklander

You did not mention which browser it does not work in. I have it working in IE7+, Chrome, Safari and FF 3.6 with a small amount of JS (focus listeners...

@renatocaval Given the "build your own using actors directly" path: How would I best reproduce this: https://github.com/bishophu/akka-persistence-transaction in Lagom? He uses a `class TransactionManagerActor extends PersistentActor with AtLeastOnceDelivery`. Since we...

This _should_ be easier to do now with the move to Akka Typed. Rather than a new Lagom feature it could be provided as documentation about how to implement a...

What's the story here today? With akka-persistence-jdbc 5 I have an `event_payload_column` which contains a byte array (pg `bytea`) of the JSON of the event. I guess the fact that...

The `FruitBasket` is indeed my intended use case. It would work to do as in your example. The problem lies in the fact that projections come and go while the...

Thanks for the clarification. Our actions going forwards will be: 1. Try to do > Or maybe the ordering is not that important and the requirement could be relaxed? >...

For the projections? Postgres at the moment, but will probably use Neo4j for most future views. Also some pure in memory views where the number of events per entity is...

Oh! So more like getting an event stream and filtering in the client (the code I write) than to have n number of projections poll the database for "has anything...

But it looks like I misunderstood. `currentEventsBySlices[MyEvent]` is still per event type and takes an `entityType: String` (which looks like a tag), so the performance issue that is solved here...

One more question, now that we are on the topic of akka-persistence-r2dbc: > Publish events for lower latency of eventsBySlices ... The events must still be retrieved from the database,...