Re: AMQ+stomp+php performance issues

2012-02-21 Thread alexandry
Please disregard the question, i look into source code of php stomp implementation and it seems, like has frame is simply wait max wait period of 2 sec to see if message will appear. -- View this message in context: http://activemq.2283324.n4.nabble.com/AMQ-stomp-php-performance-issues-tp4406306p

AMQ+stomp+php performance issues

2012-02-21 Thread alexandry
Hi, i have the following configuration http://activemq.2283324.n4.nabble.com/file/n4406306/activemq.xml activemq.xml and the following code in php http://activemq.2283324.n4.nabble.com/file/n4406306/test_s.php test_s.php when i run it without sending any messages time to check if there are frame

Re: how to enable persistent message store?

2012-01-27 Thread alexandry
Thank you! i was try it before, but it was not working. To whom it can be interested correction is to submit 'true' as string at php, not as boolean value. So headers will look like $headers = array('persistent' => 'true'); not $headers = array('persistent' => true); May be that will safe time to

Re: how to enable persistent message store?

2012-01-27 Thread alexandry
http://activemq.2283324.n4.nabble.com/file/n4332902/test_s.php test_s.php http://activemq.2283324.n4.nabble.com/file/n4332902/activemq.xml activemq.xml Here is my script at php and activemq.xml config file. to run at php to send message i do "php test_s.php send", to read what can be read "php t

how to enable persistent message store?

2012-01-26 Thread alexandry
Hi, i trying to figure out how to enable persistent storage at ActiveMQ. My configuration say http://activemq.apache.org/schema/core"; brokerName="firstbroker" dataDirectory="${activemq.base}/data" persistent="true"> that it should be persistent. But in following scenario it not seems to be pers