Re: Apollo: Messages always persists

2014-09-23 Thread Hiram Chirino
That's just the way apollo works. It does not guarantee non-persistent messages will survive a restart, but it does not go out of it's way to drop them if there is a restart. Basically if your message gets paged out to disk, it will survive. On Mon, Sep 8, 2014 at 5:25 AM, All JN

Re: Apollo: Messages always persists

2014-09-17 Thread All JN
Is there someone who experimented this behaviour? ActiveMQ Core 5.7 as client on Apollo 1.7. Here's a code sample: Connection conn = cf.createConnection(); Session sess = conn.createSession(false, Session.AUTO_ACKNOWLEDGE); MessageProducer producer =

Apollo: Messages always persists

2014-09-08 Thread All JN
Hello, I’m trying to use Apollo 1.7. I’m facing a problem with my first JMS test: I use a non-persistent delivery mode, the messages are persisted and survive to a restart. Someone can explain me? Thx.