PHP& SOAP使用什么消息代理?

时间:2010-10-04 13:28:45

标签: php soap activemq stomp messagebroker

我正在研究一种解决方案,使大型数据库中的某些数据可用于远程网站。我的第一个想法是简单地编写一些soap web服务来从数据库中获取某些数据。这可以在几行中完成,例如像Zend_Soap_Server的用户那样:

class MyClass 
{
    public function getlastname($id) 
    {
        $dbh = new PDO("oci:dbname=bigdb", "theuser", "thepass");

        $stmt = $dbh->prepare("select lastname from person where id  = :id"); 

        if ($stmt->execute(array(':id',$id))) 
        {
         $row = $stmt->fetch();
         return $row['lastname'];
        }
    }
}

$server = new Zend_Soap_Server(null, $options);
$server->setClass('MyClass');
$server->setObject(new MyClass());

$server->handle();

现在有人告诉我也要查看消息代理/队列。我一直在看一些像apache activeMQ,stomp和zend_queue这样的软件,但我并没有真正清楚地了解它们应该用于什么以及它们在这个项目中有用的天气。

我确实理解我的实现可能有一些缺点,例如当数据库没有快速响应时网站缓慢,以及当网站发出大量请求时数据库负载很高,消息代理能否防止这种并发症?

1 个答案:

答案 0 :(得分:1)

消息代理的作用是检查请求并将它们分派给正确的服务或从缓存中返回响应。

如果您期望大量流量,则可能应考虑使用消息代理。

此致 阿林