amazon sqs :read message not in order
问题 i would like to take messages from amazon sqs in the same order in which it is inserted into sqs ( first in first out model). Is their any way to implement it?? I am using zend php for programing. 回答1: Unordered message delivery is inherent in the design of SQS. You could try to work around it by numbering the messages and storing the out-of-order messages locally until the missing messages arrive, but its probably not worth the hassle. SQS is really a bit of an odd duck, it does what it says