plumphp/plum-doctrine 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

plumphp/plum-doctrine

最新稳定版本:v0.1

Composer 安装命令:

composer require plumphp/plum-doctrine

包简介

PlumDoctrine integrates Doctrine into Plum. Plum is a data processing pipeline for PHP.

README 文档

README

Plum

PlumDate integrates Doctrine into Plum. Plum is a data processing pipeline for PHP.

Build Status Scrutinizer Code Quality Code Coverage StyleCI

Developed by Florian Eckerstorfer in Vienna, Europe.

Installation

You can install PlumDoctrine using Composer.

$ composer require plumphp/plum-doctrine

Usage

Please refer to the Plum documentation for more information.

Doctrine ORM

EntityWriter for Doctrine ORM

Plum\PlumDoctrine\ORM\EntityWriter persists entities using an instance of Doctrine\ORM\EntityManagerInterface. It supports batch operations with a configurable flush interval.

use Plum\PlumDoctrine\ORM\EntityWriter;

$writer = new EntityWriter($entityManager);
$writer->prepare();
$writer->writeItem($user1); // persist, but no flush
$writer->writeItem($user2); // persist, but no flush
$writer->finish(); // flush

If you are persisting too many entities for one flush at the end you can set the flushInterval option to flush after writing every x entities.

use Plum\PlumDoctrine\ORM\EntityWriter;

$writer = new EntityWriter($entityManager, ['flushInterval' => 3);
$writer->prepare();
$writer->writeItem($user1); // persist, but no flush
$writer->writeItem($user2); // persist, but no flush
$writer->writeItem($user3); // persist and flush
$writer->writeItem($user4); // persist, but no flush
$writer->finish(); // flush

Setting the flushInverval option to null, which is also the default value, flushes the transaction only when calling finish(). If no items are written using writeItem() the writer will never call flush().

QueryReader for Doctrine ORM

Plum\PlumDoctrine\ORM\QueryReader takes an instance of Doctrine\ORM\AbstractQuery and returns an iterator for the result.

use Plum\PlumDoctrine\ORM\QueryReader;

$reader = new QueryReader($query);
$reader->getIterator(); // -> ArrayIterator<object>
$reader->count(); // -> int

The hydration mode can be set using the hydrationMode option.

use Plum\PlumDoctrine\ORM\QueryReader;

$reader = new QueryReader($query, ['hydrationMode' => Doctrine\ORM\Query::HYDRATE_ARRAY);
$reader->getIterator(); // -> ArrayIterator<array>

RepositoryReader for Doctrine ORM

Plum\PlumDoctrine\ORM\RepositoryReader takes a Doctrine\ORM\EntityRepository and a simple condition and returns an iterator with the results.

use Plum\PlumDoctrine\ORM\RepositoryReader;

$reader = new RepositoryReader($repository, ['age' => 20]);
$reader->getIterator(); // -> ArrayIterator
$reader->count(); // -> int

Change Log

Version 0.1 (24 October 2015)

  • Initial release

License

The MIT license applies to plumphp/plum-doctrine. For the full copyright and license information, please view the LICENSE file distributed with this source code.

统计信息

  • 总下载量: 19
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-23

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固