What is new in
Doctrine?
Benjamin Eberlei
& Alexander Mols
Symfony Live Berlin 2012
Slide 2
Slide 2 text
Benjamin
Benjamin Eberlei
SimpleThings GmbH
Doctrine Core Developer
github.com/beberlei
twitter.com/beberlei
Slide 3
Slide 3 text
Alexander
Alexander Mols
Technical Lead Developer @ VONQ
Doctrine Core Developer
github.com/asm89
twitter.com/iam_asm89
Slide 4
Slide 4 text
The big picture
●
6 month release schedule
●
2.4 on the horizon
●
Increased velocity since 2.0
●
Growing team
●
Stabilizing and improving minor details
Slide 5
Slide 5 text
New features
●
2.2 and 2.3 added tons of features
●
Hard to keep up with rate of change
●
Documentation fail on our part
Slide 6
Slide 6 text
Filter API
http://www.flickr.com/photos/giantsqurl/4983106796/
DQL Improvements
●
Bit comparisons
●
New CASE expression
●
New IDENTITY function
●
Sort by associations
Slide 21
Slide 21 text
Master-Slave
Connection
Slide 22
Slide 22 text
Master-Slave Connection
●
Define many slaves and one master
●
All reads go to a random slave
●
Until one write statement is issued
●
Then every read goes to master
●
Selectively change back to slave
Slide 23
Slide 23 text
Target Entity
Resolving
Slide 24
Slide 24 text
Target Entity Resolving
1
Slide 25
Slide 25 text
No content
Slide 26
Slide 26 text
Arbitrary Joins
Slide 27
Slide 27 text
Arbitrary Joins
1 SELECT
2 u.name, a.title
3 FROM
4 User u
5 JOIN
6 Article a
7 WITH
8 a.user = u.id
1 SELECT
2 u.name, a.title
3 FROM
4 User u
5 JOIN
6 u.article a
Slide 28
Slide 28 text
Arbitrary Joins
1 SELECT
2 u.name, a.title
3 FROM
4 User u
5 JOIN
6 Article a
7 WITH
8 a.user = u.id
1 SELECT
2 u.name, a.title
3 FROM
4 User u
5 JOIN
6 u.article a
Collection Criteria
●
Uses SQL when collection is not yet loaded
●
Works on any Selectable
– PersistentCollection (associations)
– ArrayCollection
– EntityReposity
Slide 37
Slide 37 text
Naming Strategy
Slide 38
Slide 38 text
Naming Strategy
●
Customize name generation for tables, columns
●
Two strategies shipped in core:
– DefaultNamingStrategy
– UnderscoreNamingStrategy
●
Only works for “unnamed” columns!
●
Legacy database schema's