Questions tagged [zend-queue]

`Zend Queue` provides a factory function to create specific queue client objects.

A message queue is a method for distributed processing. For example, a Job Broker application may accept multiple applications for jobs from a variety of sources.

For more information about Zend Queue visit the official documentation: https://framework.zend.com/manual/1.12/en/zend.queue.introduction.html

10 questions
4
votes
2 answers

Use Zend_Queue without Zend Server

Is it possible to use Zend Queue without to have Zend Server installed on a server ?
Mickael
  • 113
  • 1
  • 6
2
votes
0 answers

Query builder using Zend Framework

I am just beginning my journey into PHP Zend Framework World. The aim of my application is to develop query builder using Zend. This application will be used by many users in a network at same time. When a user performing search based on some…
Vinayagam
  • 676
  • 1
  • 7
  • 29
1
vote
1 answer

Zend_Queue database scheme

I'm using Zend_Queue to queue and send out emails (http://framework.zend.com/manual/en/zend.queue.adapters.html) Is there a way to modify the Zend_Queue_Adapter_Db default table names? By default, the table names are "queue" & "message" which are a…
aporat
  • 5,832
  • 5
  • 27
  • 54
1
vote
4 answers

PHP doesn't find array elements

A library I use uses an array. Applying print_r to that array prints this: Array ( [*queueId] => 1 [*handle] => 9b875867b36d568483fb35fdb8b0bbf6 [*body] => First string in the TestQueue [*md5] => c23ba714199666efbc1dcd5659bb0a0a …
Lukas
  • 7,340
  • 10
  • 51
  • 94
1
vote
2 answers

Getting a Reference to a Zend_Application's Config Object

Is there a helper method/object/methodology for getting a reference to a Zend_Application's config resource? I know I can do something like $config = new Zend_Config_Ini($file, $environment); but that's going to reload/parse the config file. I'm…
Alan Storm
  • 157,413
  • 86
  • 367
  • 554
1
vote
1 answer

Infrastructure for Running your Zend Queue Receiver

I have a simple messaging queue setup and running using the Zend_Queue object heirarchy. I'm using a Zend_Queue_Adapter_Db back-end. I'm interested in using this as a job queue, to schedule things for processing at a later time. They're jobs that…
Alan Storm
  • 157,413
  • 86
  • 367
  • 554
0
votes
0 answers

How do I delete a message in ActiveMQ using ZFW2?

I am using ZendQueue component https://github.com/zendframework/ZendQueue. After I read my messages, I try to delete them. I am using the Queue object and the Activemq adapter. I am connecting ok, as I am able to get the data I publish. The code is…
Itay Moav -Malimovka
  • 48,785
  • 58
  • 182
  • 262
0
votes
2 answers

How install ZendQueue to ZF2 2.1.5

I need to implement sending messages to the queue rabbitmq(amqp) from ZF2. I did not find the module in ZF2 to work with a queue. It was decided to expand adapter of ZendQueue. (Maybe somebody knows another way) I tried to install ZendQueue at help…
St_5
  • 303
  • 3
  • 12
0
votes
1 answer

Zend Queue DB Exception

I'm using Zend_Queue with the DB adapter outside the framework, I have the following code:
neilcrookes
  • 4,208
  • 1
  • 19
  • 26
-2
votes
1 answer

How to create queue system to send emails in zend framework 2.2.?

I want to prepare a queue for my system to send emails using queue. Suppose i have one script to insert some record and send an email then i will add these email in queue and when queue execute then email would be sent. Can you suggest me some…
Darshan ambaliya
  • 291
  • 3
  • 19