我是ZEND的新手,我正在研究该版本(ZEND 1.11.1)我正在尝试在我的zend应用程序中实现ZEND_QUEUE,而且没有适合我的教程。通过我试图实现队列。
我正在为DB开发一个队列。应用程序的工作方式如下: 1.用户通过应用程序输入SQL查询并等待结果。 2.查询成功完成后,查询将移至QUEUE并使用数据库进行处理。查询应该将发送的结果发送给用户。
在我的控制器内:
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$options = array(
'name' => 'queue1',
'driverOptions' => array(
'host' => '127.0.0.1',
'port' => '3306',
'username' => 'queue',
'password' => 'queue',
'dbname' => 'queue',
'type' => 'pdo_mysql'
)
);
// Create a database queue.
// Zend_Queue will prepend Zend_Queue_Adapter_ to 'Db' for the class name.
$queue = new Zend_Queue('Db', $options);
foreach ($queue->getQueues() as $name) {
echo $name, "\n";
}
$queue->send('My Test Message');
}
}
我遇到的问题是我无法理解我想在哪个文件夹中添加代码。
我没有在我的应用程序中使用MODEL,因为应用程序的要求是仅使用CONTROLLER和VIEW。
此外,当我尝试扩展Zend_Queue_Adapter_Db时,我收到以下错误:
致命错误:未找到类'ZendJobQueue'
或
致命错误:未捕获异常'Zend_Controller_Dispatcher_Exception',并在F:\ wamp \ www \ helloworld \ library \ Zend \ Controller \ Dispatcher \ Standard.php中显示消息'指定了无效的控制器(错误)':242堆栈跟踪:#0 F :\ wamp \ www \ helloworld \ library \ Zend \ Controller \ Front.php(946):
请告诉我正确的文件夹或任何有助于初学者使用ZEND JOBQUEUE的教程。
答案 0 :(得分:1)
我在以下链接中获得了一些有用的代码:
http://dennisgurnick.com/2011/09/29/zend-queue-with-mysql/
我的网站指示完全一样:
; file: application/configs/application.ini
[production]
; ...
resources.frontController.params.displayExceptions = 0
; ...
queue.driverOptions.type = "pdo_mysql"
queue.driverOptions.host = "localhost"
queue.driverOptions.username = "howtoqueue"
queue.driverOptions.password = "howtoqueue"
queue.driverOptions.dbname = "howtoqueue"
在Boostrap.php文件中添加了以下代码:
<?php
// file: application/Bootstrap.php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initQueue()
{
$options = $this->getOptions();
$queueAdapter = new Zend_Queue_Adapter_Db( $options[ 'queue' ] );
Zend_Registry::getInstance()->queueAdapter = $queueAdapter;
}
}
还在Library文件夹中添加了一个文件,但我不清楚为什么要添加此文件。
<?php
// file: library/EmailPopo.php
class EmailPopo
{
private $_data = array();
public function __get($key) {
return $this->_data[$key];
}
public function __set($key, $value) {
$this->_data[$key] = $value;
}
}
在IndexController中添加了以下代码:
// file: application/controllers/IndexController.php
require_once "EmailPopo.php";
public function indexAction()
{
$queueAdapter = Zend_Registry::getInstance()->queueAdapter;
$options = array( 'name' => 'emailqueue' );
$queue = new Zend_Queue( $queueAdapter, $options );
$email = new EmailPopo();
$email->date = time();
$email->from = "minnie.mouse@disney.com";
$email->to = "mickey.mouse@disney.com";
$email->subject = "I want a divorce";
$email->body = "Letter's in the mail.";
$message = base64_encode( gzcompress( serialize( $email ) ) );
$queue->send( $message );
}
public function queueAction() {
$queueAdapter = Zend_Registry::getInstance()->queueAdapter;
$options = array( 'name' => 'emailqueue' );
$queue = new Zend_Queue( $queueAdapter, $options );
$messages = $queue->receive( 2 );
foreach( $messages as $message ) {
try {
$email = unserialize( gzuncompress( base64_decode( $message->body ) ) );
$queue->deleteMessage( $message );
echo sprintf(
"Sent email to %s (time: %s)<br/>",
$email->to,
new Zend_Date( $email->date )
);
} catch( Exception $ex ) {
echo "Kaboom!: " . $ex->getMessage() . "<br/>";
}
}
die( "Done" );
}
开放坦率地说这段代码似乎正在运行,因为我收到的是“DONE”,因为O / P是以die('Done')编码的;
如果我首先运行代码,则会收到以下输出:
Sent email to minnie.mouse@disney.com (time: current time)<br/>
Done
当我再次运行相同的文件时,它输出
Done
独自一人,我很困惑,为什么它会在不同的情况下给出不同的输出。几个小时后,如果我再次运行代码,它会给我第一个O / P.
数据库更改:
我有这个应用程序的2个表:
1.Message:
CREATE TABLE IF NOT EXISTS `message` (
`message_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`queue_id` int(10) unsigned NOT NULL,
`handle` char(32) DEFAULT NULL,
`body` varchar(8192) NOT NULL,
`md5` char(32) NOT NULL,
`timeout` decimal(14,4) unsigned DEFAULT NULL,
`created` int(10) unsigned NOT NULL,
PRIMARY KEY (`message_id`),
UNIQUE KEY `message_handle` (`handle`),
KEY `message_queueid` (`queue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
ALTER TABLE `message`
ADD CONSTRAINT `message_ibfk_1` FOREIGN KEY (`queue_id`) REFERENCES `queue` (`queue_id`) ON DELETE CASCADE ON UPDATE CASCADE;
2.Queue
CREATE TABLE IF NOT EXISTS `queue` (
`queue_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`queue_name` varchar(100) NOT NULL,
`timeout` smallint(5) unsigned NOT NULL DEFAULT '30',
PRIMARY KEY (`queue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
以上两个是DB结构。 我可以看到在Queue表中插入了一些数据,但我不知道哪个数据受到了影响?
请帮助我理解队列和脚本的结构。
运作良好吗?如果我理解Above Logic并希望我可以在Zend中为查询执行创建一个DB队列。我正在努力寻求一些解释。
对我而言Copy&amp;粘贴代码不是一个好的编程,知道我在做什么是好的!
谢谢!任何帮助将非常感谢!