Related to Doctrine2 best practices : https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/best-practices.html
and related to that post : Why is it recommended to avoid bidirectional relations in ORM?
I need to understand if two unidirectional relations affects performances as much as one bidirectional relation, or less, or more.
As both types of relation result in the same SQL, performance issues seems to be related to hydration, persistance and DQL querying.
Like explained here : https://ocramius.github.io/blog/doctrine-orm-optimization-hydration/