Special Anniversary Black Friday: Get 30% off all training and 10% off all services Get a Quote


Symfony World Winter 2021: the interview with two speakers from SensioLabs

· Jules Daunay · 3 minutes to read
Clément-Hubert

This year, two SensioLabs experts were speakers at Symfony World Winter 2021. They shared their experience with us. A glimpse behind the scenes of the SymfonyWorld.

At Symfony World Winter 2021, two experts from SensioLabs were speakers. Following this online conference where more than 1,000 people attended in two days, they shared their experience with us and talked about their topic. A glimpse behind the scenes of the SymfonyWorld!

What was the topic of your talks at Symfony World Winter 2021?

Hubert Lenoir: The title of my talk was “How to handle dynamic data structure?” In my talk, I presented the Entity Attribute Value. It is a data model we call EAV. It is a method to store data, and I tried to illustrate it with real-life situations on Symfony or in projects using Symfony (Magento, Sylius, Drupal, etc.). In fact, many projects based on Symfony have to manage data with diverse structures. For example, in e-commerce. By implementing EAVs, you will try to separate the attributes from the values of a product. In this way, this method makes it easier to search or classify an item.

During my lecture, I also talked about managing the inherent constraints of EAVs. Finally, I mentioned storage issues. After implementing EAVs, the next question is how to store them. It was the opportunity for me to talk again about cache. I already had talked about it at the SymfonyLive Paris 2020. There are also other approaches, and I mentioned them in my talk.

Clément Bertillon: I talked about how to deal with a problem in production in a distributed application environment. I called my presentation: “My prod is down, let’s escape from Service Oriented Architecture Hell.” In a context with large distributed development teams, you often have several sites linked with dependencies. You tend to multiply SPoFs (Single Points of Failure, the topic of Fabien Potencier’s keynote at SymfonyWord Winter 2021, by the way), and you don’t know where a break has occurred. In this case, how to quickly find the SPoF and fix the breach? I wanted to present my experience in this talk.

Where did the inspiration for your subject come from?

CB: I got the idea based on my experience with a client project. This client had many distributed environments, and microservices architectures emphasized this effect. It has been a while since I wanted to contribute to the community with feedback. I also wished to participate in a conference with a high technical level. I decided to submit my topic to the Symfony World Winter 2021 Call for Papers.

At first, I had already delivered a presentation on this topic to my client. The talk didn’t look like this, but it was a good basis to prepare for the conference. I just did a bit of editing to make the content business agnostic and speak to everyone.

HL: I also came up with the idea thanks to a project I worked on. It was for an open-source scientific publications project with a lot of references. We had to store data without knowing what form it took. It was a huge technical challenge for us. We had to organize how to process and store data that did not have the same structure. I wanted to talk about it to start a conversation on this topic within the community.

How was your experience as a speaker at Symfony World Winter 2021?

CB: I didn’t realize how long it takes to prepare a video. You have to carefully set up the recording, edit, review the subtitles, etc. If I had to do it again, I would probably go faster. In the end, I perfected my video production skills with the Symfony World Winter 2021. The platform works well, and I liked that people write questions in advance in the chat. It makes it easier to read the questions: you can prepare them a bit before answering them. Despite a language disability, which makes it hard for me to understand the person I am talking to, it was definitely worth trying.

HL: It wasn’t my first talk at a Symfony conference, but it was the first one in English, so I was a bit worried. Overall, it went very well, especially the questions and answers. Some participants suggested other methods in the questions. I think I will write something about it soon.

I already gave courses in English on Symfony. But since the talk was recorded, I had the impression that it was more difficult. Because if you make a mistake, you want to start again, but in real-life, you fix it instantly, and you continue.

In my opinion, it’s always interesting to give talks because it encourages you to keep an eye on new things, to exchange with other people, and to consider new technologies. You see how it worked elsewhere. On my topic, for example, I did not see before how EAVs worked in Drupal. I exchanged with a colleague who had a similar problem, and we found solutions.

Ready to submit a talk to a Symfony conference again?

CB: Of course.

HL: Yes, I just have to find a subject to work on!

Thank you Clément and Hubert! Find their talks in replay on the Symfony conference website. If you didn’t have a ticket, you can still buy a voucher to see the conference.

Would you like to be a speaker at a next Symfony conference? The SymfonyLive Paris 2022 CFP (in French) is open until January 24th and the SymfonyWorld Summer 2022 CFP (in English) until February 14th. Send your proposals!

This might also interest you

The SensioLabs team celebrating the 20th anniversary of Symfony with balloons
Jules Daunay

The Story Continues: SensioLabs Celebrates Symfony's 20th Anniversary

Time flies, especially when you're busy shaping the future of development! The SensioLabs team has just reached a milestone with the anniversary of the Symfony framework. We marked the occasion at the office, but the party isn't over yet. The date is already set for an XXL celebration at SymfonyCon Amsterdam 2025, from November 27 to 28.

Read more
PHP 8.5 URI extension
Oskar Stark

PHP 8.5's New URI Extension: A Game-Changer for URL Parsing

PHP 8.5 introduces a powerful new URI extension that modernizes URL handling. With support for both RFC 3986 and WHATWG standards, the new Uri class provides immutable objects, fluent interfaces, and proper validation - addressing all the limitations of the legacy parse_url() function. This guide shows practical before/after examples and explains when to use each standard.

Read more
Open in new tab
Silas Joisten

The Tab Trap: Why Forcing New Tabs Is Bad UX

We’ve all done it — added target="_blank" to a link to “help users” stay on our site. But what feels like a harmless convenience often creates confusion, breaks accessibility, and introduces hidden security risks.

Read more
3 dog heads
Mathieu Santostefano

Bring Your Own HTTP client

Break free from rigid dependencies in your PHP SDKs. Learn how to use PSR-7, PSR-17, and PSR-18 standards along with php-http/discovery to allow users to bring their favorite HTTP client, whether it's Guzzle, Symfony HttpClient, or another. A must-read for PHP and Symfony developers.

Read more
Blue sign on a building with several Now What? letters
Thibaut Chieux

How To Prioritize Messages When Building Asynchronous Applications With Symfony Messenger

Asynchronous processing offers benefits like decoupled processes and faster response times, but managing message priorities can become a challenge. When dealing with tasks ranging from password resets to complex exports, ensuring timely delivery of critical messages is essential. This article explores common asynchronous processing issues and provides solutions using Symfony Messenger, allowing you to optimize your application without extensive refactoring.

Read more
SensioLabs University Courses announcing the new level 3 Master training course now available
Jules Daunay

Master Symfony: Unlock Expert Skills with Our Training

Take your Symfony proficiency from good to great with the new Level 3 training course at SensioLabs! Master complex topics, optimize performance, and become a Symfony expert.

Read more
Two images: on the left many cars stuck in a traffic jam with the sign "All directions" above, on the right a blue car moving forward alone on the highway with the sign "Service Subscriber" and a Symfony logo above
Steven Renaux

Symfony Lazy Services with Style: Boost DX using Service Subscribers

Boost your Symfony app's performance and developer experience! Learn how to use Service Subscribers and traits for lazy service loading to reduce eager instantiation, simplify dependencies, and create modular, maintainable code.

Read more
Poster of Guillaume Loulier presentation
Salsabile El-Khatouri

A Symfony Training at SensioLabs: Behind The Scenes

What does Symfony training at SensioLabs look like? Find out in this interview with Guillaume Loulier, a passionate developer and trainer, who tells us all about the official Symfony training courses.

Read more
Photo de groupe devant le stand SFLIVE PARIS
Elise Hamimi

SymfonyLive Paris 2025: talks, community and 20 years of Symfony

On March 27th and 28th, the French-speaking Symfony community gathered at the Cité Internationale Universitaire de Paris for another edition of SymfonyLive Paris. This year, in addition to inspiring conferences, great workshops and community time, Symfony enthusiasts kicked off the official celebration of Symfony's 20th anniversary.

Read more
Domain Driven Design practical approach
Silas Joisten

Applying Domain-Driven Design in PHP and Symfony: A Hands-On Guide

Learn how to apply Domain-Driven Design (DDD) principles in Symfony with practical examples. Discover the power of value objects, repositories, and bounded contexts.

Read more
Photo speaker meetup AI Symfony
Jules Daunay

Symfony and AI: the video is now available

What about Symfony and Artificial Intelligence (AI)? This was the theme of the exclusive event organized by SensioLabs in partnership with Codéin on October 3rd. With the added bonus of feedback from a development project combining Symfony and AI. If you missed the event, check out the video now available for free on our Youtube channel.

Read more
2025 a year of celebrations for PHP with windows about API Platform, PHP, AFUP and Symfony
Jules Daunay

2025: a year of anniversaries for PHP, AFUP, Symfony and API Platform

2025 is going to be a big year for anniversaries. We will be celebrating the 20th anniversary of Symfony, the 30th anniversary of PHP, the 25th anniversary of AFUP and the 10th anniversary of API Platform. For SensioLabs, this is a major milestone that proves the longevity of the technologies in our ecosystem. We are proud to celebrate these anniversaries with the community all year long.

Read more
SymfonyDay Chicago 2025
Simon André

SymfonyDay Chicago 2025: A Celebration of Community

On March 17th, the Symfony community met in Chicago for SymfonyDay Chicago 2025. The event, held on St. Patrick's Day, was both a celebration of Symfony and a moment to support Ryan Weaver in his fight against cancer. It was more than just a conference — it was a gathering around a valued member of the community.

Read more
Blue ElePHPant on a computer
Imen Ezzine

Optimize Your PHP Code: 8 Functions You Need for Efficient Table Handling

If you want to become a good PHP developer, you must learn to work with arrays. Arrays are used a lot in PHP: temporarily store, organize, and process data before it's saved in a database. Knowing how to work with them efficiently will help you manage and process data more effectively.

Read more
type-safety-uuid
Oskar Stark

Type-Safe Identifiers with Symfony and Doctrine: Using Dedicated ID Classes

Learn how to enhance type safety in Symfony and Doctrine by using dedicated ID classes like BookId and UserId instead of raw UUIDs. This approach prevents identifier mix-ups, improves code clarity, and ensures better integration with Symfony Messenger and repository methods. Explore practical examples and best practices for implementing type-safe identifiers in your Symfony applications.

Read more
Image