Renato Cavalcanti

Results 258 comments of Renato Cavalcanti

I realised that this can't be properly done without also implementing what @WellingR suggested about avoiding the creation of different pools. The bottom line is: When configured through plain configuration,...

@olijaun, unfortunately, I don't think the `numThreads` config will be used. When using the `jndiName`, it will configure the Slick DB on this line: https://github.com/akka/akka-persistence-jdbc/blob/master/core/src/main/scala/akka/persistence/jdbc/db/SlickDatabase.scala#L54 The `None` is the max...

I guess you want to consume events from different kinds of entities with a single projection in order to build an aggregated view. Is that correct? I can also imagine...

I understand your concern about entities not needing to know about each other. On the other hand, if they need to be consumed preserving the ordering, then it sounds to...

hi @PerWiklander There were two reasons for us to not use the Slick table generation. The most important one is that it's easier to read plain SQL and we use...

Maybe we should update the documentation to make it clear what are the limitations and how to work it around. Would you be willing to send a PR? This is...

Oh, I posted my comment before reading your last comment. Yes, the order in the index matters. And indeed, we have already an index because of the primary key. I...

I prefer not to add any flag, that will only increase the complexity. And since we have been discussing about review that whole tagging / slicing thing, I don't think...

I didn't check the errors in detail, but all H2 tests failed. Probably because of https://stackoverflow.com/questions/70695039/org-h2-jdbc-jdbcsqlsyntaxerrorexception-after-h2-version-upgrade/70696184 (see also https://github.com/playframework/playframework/pull/11081/files#r786563185)