Hi Martin, I understand the database thing now, thanks for the explanation.
Glad to hear that. I assume that - to achieve similar functionality as a > durable mailbox - it would make sense to set > akka.persistence.journal.max-message-batch-size > to 1 or another very low value to ensure that new messages are immediately > written to disk? Yes, setting that value to a small number would ensure more frequent writes to disk. One consideration for this is that I imagine that the lower you set the value to, the more disk accessing you'll have to do which might have a negative efficiency impact on your application depending on how many messages your persistent actor (processor) is receiving. -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
