Is there a way to write a Php consumer for SQS that doesn't have to poll periodically for new messages?
The only way to consume messages I found so far is getting them using the receive_message() api call which needs to be done using periodical polling.
While it should work it still seems wrong.