--
>>>>>>>>>> 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 akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
thank you Martynas,I wrote a sample, and two unclear points for me on "deleteMessages( toSeqId )".1) How should application logically/priodically delete messages in a high load environment? Can't we hook into confirmDelivery method so that every confirmed message gets deleted?
2) Can default performance handle around a few million undelivered message in consumer down times?
Thank you Patrik,Then the application should itself track of sequences!? For example call deleteMessages when reached to sequenceId N !?And what happens when deleteMessage( 1000 ) is called and messages with seqId 900 and 950 are unconfirmed !? are they deleted too? or I only empty delivered history !?