Message-How to get RABBITMQ the number of unhandled messages in the specified queue using PHP

Source: Internet
Author: User
Tags ack rabbitmq

The PHP extension chooses the PHP-AMQP

Hopefully, the number of messages that have not been picked up in the specified message queue (including Un-ack messages) can be obtained in PHP.

Execute at command line: Xxx/rabbitmqctl List_queues can return this data

I want to know if there is a corresponding method under PHP to get this value?

@modi answer complete the code:

Reply content:

The PHP extension chooses the PHP-AMQP

Hopefully, the number of messages that have not been picked up in the specified message queue (including Un-ack messages) can be obtained in PHP.

Execute at command line: Xxx/rabbitmqctl List_queues can return this data

I want to know if there is a corresponding method under PHP to get this value?

@modi answer complete the code:

Declare a queue, the amqp_passive flag bit, does not affect the server state and returns the message count.

$conn = new Amqpconnection ()//... $queue = new Amqpqueue ($conn); $queue->setflags (amqp_passive); $messageCount = $ Queue->declare ($queueName); <-Here//...

Read the manual http://php.net/manual/en/book.amqp.ph ..., there seems to be no corresponding method

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.