All Questions
Tagged with message-queue php
146 questions
1
vote
1
answer
81
views
Sending messages to MSMQ
I'm trying to send messages to Microsoft Message Queuing (MSMQ) from PHP (version 7).
Could anyone provide me with code examples or point me to relevant documentation or libraries that can be used to ...
1
vote
0
answers
553
views
How can i send notification to all users devices using Laravel Job?
I want to send a notification to all users when I click on send notification button it shows a success message on the spot without taking time and it sends a notification to all users in the ...
0
votes
0
answers
362
views
PHP Rabbitmq how to check if consumer is running?
According Rabbitmq documentation I wrote a script for consuming queue. But its pretty basic example. The script will run as cron because I need to be sure it will recover consuming process if previous ...
0
votes
1
answer
774
views
PHP Message Queue for low volume jobs
When using PHP and a Message Queue (MQ) system like RabbitMQ, Beanstalkd, etc.
Adding jobs to the queue seems simple enough (often a HTTP request).
But to process the queued jobs, most examples ...
0
votes
1
answer
70
views
Can ActiveMQ trasport byte array of GZipped data through STOMP? [closed]
Producers Message data is a byte array of GZipped data on ActiveMQ. Does STOMP transport this data message to the consumers?
0
votes
1
answer
216
views
PHP stomp selector for ActiveMQ
$topic = '/topic/orders';
$selector = "orders IN ('1233', '345', '22222')";
$username = 'username'; $pass = 'pass';
$connection = new Connection($brokerUri);
$client = new Client($...
0
votes
1
answer
825
views
consumption of kafka message on lumen
I am very confused. So any help it will be very wellcome.
I am trying to deploy a lumen app, that can consume message from kafka.
I have gueesed that queue could be the right apporach to the problem, ...
1
vote
0
answers
2k
views
Laravel Queues vs Kafka/RabbitMQ
At our company we currently sending around 1.5 to 2 million text messages per month using various services like Ring Ring, Nexmo, Twilio, ... This is currently done by some old cronjob script we wrote ...
0
votes
1
answer
608
views
Using msg_send() in PHP results in error 11... Cannot find a solution
I am currently building a small application that uses the message queue built in PHP.
I have 1 "server" process and 1 "client" process. Messages flow from server to client.
They ...
0
votes
1
answer
62
views
How to make PHP listening to the job tables
I am working on the system which developed in php without framework.
It has the function is automatically run some jobs via third party api every night. It loops all the jobs in table and call api ...
2
votes
1
answer
185
views
Send push notifications to Taxi drivers but with a delay in a for each loop - php laravel
So this is a simple taxi dispatch server built in php Laravel that sends out push notifications to the matching online Taxi drivers within the radius of the Customer, using a foreach loop:
foreach ($...
0
votes
1
answer
3k
views
CRITICAL messenger Error thrown while handling message AppBundle\Message\Message
I'm using the symfony messenger component : https://symfony.com/doc/current/messenger.html
But my logs are flooded by these messages when retries are failing :
16:14:31 CRITICAL [messenger] Error ...
0
votes
2
answers
165
views
Type: Error Message: Using $this when not in object context
i have an error in my code. I want to call the get_mail() function in the index function. This code is rabbitmq with phpcodeigniter consumer code, error message is:
Type: Error
Message: Class '...
2
votes
0
answers
1k
views
PHP: extension sysvmsg
i use on my one personaly project simple queue implemented by msg function. This a specific function msg_receive which is used to wait for a message to come to the queue. Once in a while, this wait ...
1
vote
1
answer
790
views
Laravel Livechat System Database Design
Laravel version 7.0, MySQL version 5.8
I am going to design database for livechat system.
Here are related models & tables.
User model - users table (id, name, email, address..)
Guest model - ...