Valerioinspector-monitoring.hashnode.dev·Dec 9, 20245 Ways to Optimize Symfony Application PerformanceSymfony applications often face slow load times and high server strain due to issues like inefficient database queries, poor caching, and unoptimized settings. Here’s a quick breakdown of how to fix these problems and boost performance: Optimize Dat...Symfony
Valerioinspector-monitoring.hashnode.dev·Dec 6, 2024Symfony monitoring library implementationIn the last few months I worked heavily to renovate the monitoring experience for Symfony developers. The Symfony monitoring library is the second most popular library among Inspector's customers. The first is the Laravel package. The release of the ...Symfony
Jeniferkudrovjenifer.hashnode.dev·Dec 5, 2024Symfony vs Laravel – Which PHP Framework is Better?The two most well-known and widely-used PHP web frameworks are Laravel and Symfony. When it comes to speed, they are just amazing. They assist companies in developing scalable web apps that are in sync with current technological landscapes, company o...Symfony vs Laravel
Juan Millanmillancore.com·Nov 25, 2024The Memory-Efficient Guide to Blazing Fast CSV Filtering with PHPWhen it comes to processing large CSV files, memory consumption can quickly become a bottleneck. Loading a 10-million-line CSV file into memory? That's a recipe for an out-of-memory error. But what if I told you that you could Filter such a file usin...10 likes·126 readsPHP IteratorsPHP
Bernard Ngandungandu.hashnode.dev·Sep 22, 2024Passkey Authentication Guide for SymfonyIntroduction Passkeys, also known as WebAuthn credentials, represent a modern approach to passwordless authentication. As an evolution in web security, they aim to replace traditional password-based logins by utilizing a combination of public-key cry...11 likes·1.6K readsSymfony
Brandon Lazenbyblazenby.com·Sep 15, 2024A Critical Look at Modern Web FrameworksIn recent years, the landscape of web development has seen a proliferation of frameworks and libraries. However, upon closer examination, many of these tools lack the comprehensive feature set traditionally associated with full-stack web frameworks. ...106 reads.NET
Bernard Ngandungandu.hashnode.dev·Sep 15, 2024Decoupling your application's User Model from Symfony's Security SystemIntroduction When building Symfony applications with advanced architectural patterns like hexagonal architecture, the primary goal is often to decouple the domain (business logic) from the infrastructure (technical choices). This separation allows fo...484 readsSymfony
Valerioinspector-monitoring.hashnode.dev·Sep 14, 2024[Resolved] Integrity constraint violation – Fast tipsIf you are dealing with the error: "Integrity constraint violation: Cannot add or update a child row: a foreign key constraint fails", you are in the right article. For more technical articles you can follow me on Linkedin or X. I post about buildin...PHP
Joubert RedRatblog.redrat.com.br·Sep 12, 2024Integration tests on Symfony with TestcontainersDisclaimer: I'm not a divine entity. What I say is not an absolute truth. Don't be afraid to question even the world, because it might be wrong, not you. Today isn't a secret for nobody the importance of automated tests for keeping quality and integr...96 readsPHP
Valerioinspector-monitoring.hashnode.dev·Sep 11, 2024How to monitor Guzzle Http Client – PHP Fast tipsGuzzle is a popular PHP HTTP client that makes it easy to send HTTP requests and create web service libraries. The most popular PHP frameworks provides an internal Http Client service, and they are simply a customized implementation of the Guzzle Htt...Laravel