什么时候应该使用doctrine ORM和zend-db-table?

时间:2010-05-24 16:45:11

标签: php zend-framework doctrine zend-db-table

就项目规模,学说与zend-db-table的速度和性能而言,何时应该在Zend项目中使用doctrine,以及何时使用zend-db-table?

4 个答案:

答案 0 :(得分:27)

任何ORM框架都可以提高开发效率,而不是运行时效率。在这方面,Doctrine与Zend_Db_Table没什么不同。

如果您在Doctrine和Zend_Db_Table之间进行选择,请根据使编写代码更容易或更快的功能进行选择。

在一般情况下,没有ORM框架可以自动更快地进行数据库查询。如果您需要高性能数据库查询,您应该学习编写SQL查询代码,并根据需要运行的查询设计架构和索引以支持性能。

答案 1 :(得分:8)

使用您最满意的任何内容,并使您最有效率。您和您的开发人员可能是最昂贵的资源,如果需要,购买额外硬件可能比您不必担心未来可能的性能考虑因素更便宜。

当然,您仍然需要执行基本的数据库优化,例如创建合理的索引等。但我觉得那些“优化”不言而喻。

答案 2 :(得分:2)

如果你有很多SQL查询,缺乏知识(对缓存或查询优化一无所知等)并且缺乏时间使用Zend_DB,它更快更容易理解,对你来说已经足够了 - 缺乏知识和时间,希望尽可能快的人。

但如果你想要一个杀手ORM主义获胜。但它需要更多的时间和精力才能有效使用。

如果你想成为一名数据库杀手,我们将会脱离主题。那不一样。它不一定基于您使用的工具。 (一些DB杀手可能会使用PDO本身和他们自己的模型,谁知道?)

答案 3 :(得分:0)

Doctrine帮助您定义更好的业务逻辑和ORM,但就内存和CPU而言,它是绝对的性能杀手。 Zend表网关比Doctrine快5倍。并且您可以扩展Zend表网关以删除一些数据类型解析器,这将使您的性能提高5倍,同时保留了简单的ORM的优点。这是我的FastTablegateway类:

<?php
namespace Application\Libraries;

use Zend\Db\TableGateway\TableGateway;
use Zend\Db\Adapter\AdapterInterface;
use Zend\Db\ResultSet\ResultSetInterface;
use Zend\Db\Sql\Select;
use Zend\Db\Sql\Sql;

class FastTablegateway extends TableGateway{

    protected $mysqli_adapter = null;

    /**
     * Constructor
     *
     * @param string $table
     * @param AdapterInterface $adapter
     * @param Feature\AbstractFeature|Feature\FeatureSet|Feature\AbstractFeature[] $features
     * @param ResultSetInterface $resultSetPrototype
     * @param Sql $sql
     * @throws Exception\InvalidArgumentException
     */
    public function __construct($table, AdapterInterface $adapter, $features = null, ResultSetInterface $resultSetPrototype = null, Sql $sql = null, $mysqli = null)
    {
        $this->mysqli_adapter = $mysqli;
        parent::__construct($table, $adapter, $features, $resultSetPrototype, $sql);
    }


    protected function executeSelect(Select $select)
    {
        $time = time();
        $selectState = $select->getRawState();
        if ($selectState['table'] != $this->table) {
            throw new \Exception\RuntimeException('The table name of the provided select object must match that of the table');
        }

        if ($selectState['columns'] == array(Select::SQL_STAR)
        && $this->columns !== array()) {
            $select->columns($this->columns);
        }

        //apply preSelect features
        $this->featureSet->apply('preSelect', array($select));

        if(!$this->mysqli_adapter){
            // prepare and execute
            $statement = $this->sql->prepareStatementForSqlObject($select);
            $result = $statement->execute();
        }else{
            $q = $this->sql->getSqlStringForSqlObject($select);
            //var_dump($q);
            $result = $this->mysqli_adapter->query($q);
            $result = is_object($result) ? $result->fetch_all(MYSQLI_ASSOC) : [] ;
        }

        // build result set
        $resultSet = clone $this->resultSetPrototype;
        //var_dump(is_object($result) ? $result->num_rows : 'A');
        $resultSet->initialize($result);

        // apply postSelect features
        //$this->featureSet->apply('postSelect', array($statement, $result, $resultSet));

        return $resultSet;
    }

}