alexjumperman / doctrinetemptable
Doctrine 2 temp table extension
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- doctrine/doctrine-bundle: ^1.8
- doctrine/orm: ^2.5
This package is not auto-updated.
Last update: 2025-03-25 22:51:12 UTC
README
Problem
let's imagine that we have online-store with 1M products. On one specific category page we need to work only with 100 products from the whole stack, and we need to get:
- total products count on this page
- first 10 product entities sorting by some order
- products count by every single filter etc.
Queries by the entire stack will not be effective. More efficient way - select needed products into temporary table and executing this queries from temporary table.
Install
composer require alexjumperman/doctrinetemptable
Usage
1. Using repository trait
<?php namespace AppBundle\Repository; use AlexJumperman\TempTableBundle\Utils\TempTableTrait; class ProductRepository extends \Doctrine\ORM\EntityRepository { use TempTableTrait; }
After trait was using we continue in controller
<?php namespace AppBundle\Controller; class DefaultController extends Controller { public function indexAction() { $qb = $this->get('doctrine.orm.entity_manager') ->getRepository('AppBundle:Product') ->createQueryBuilderForTempTable('p'); } }
2. Or we can use service factory
<?php namespace AppBundle\Controller; class DefaultController extends Controller { public function indexAction() { $repository = $this->get('doctrine.orm.entity_manager')->getRepository('AppBundle:Product'); $qb = $this->get('alex_jumperman_temp_table.factory') ->createQueryBuilderForTempTable($repository, 'p'); } }
Workflow
When we have query builder instance for temporary table, we need to construct it for our requirements. In our case we need to select all products which relating to specific category.
$qb->where('p.category_id = 1');
After the query builder is configured, we can create a repository of our temporary table. In fact, it will be a certain analogue of the doctrine repository that works with the temporary table storage.
$tempRepository = $qb->createTempTableRepository('temp_products_table');
When the temporary repository is created, we can configure queries to select the necessary data.
$result1 = $tempRepository ->getEntityManager() ->getConnection() ->fetchColumn($tempRepository->createQueryBuilder('p')->select('count(p)')->getSQL()); $result2 = $tempRepository ->createQueryBuilder('p') ->setMaxResults(10) ->orderBy('p.price') ->getQuery() ->getResult();
Whole process example
<?php namespace AppBundle\Controller; class DefaultController extends Controller { public function indexAction() { $repository = $this->get('doctrine.orm.entity_manager')->getRepository('AppBundle:Product'); $tempRepository = $this->get('alex_jumperman_temp_table.factory') ->createQueryBuilderForTempTable($repository, 'p') ->where('p.category_id = 1') ->createTempTableRepository('temp_products_table'); $result1 = $tempRepository ->getEntityManager() ->getConnection() ->fetchColumn($tempRepository->createQueryBuilder('p')->select('count(p)')->getSQL()); $result2 = $tempRepository ->createQueryBuilder('p') ->setMaxResults(10) ->orderBy('p.price') ->getQuery() ->getResult(); } }