327
I Use This!
Activity Not Available

News

Analyzed 4 months ago. based on code collected almost 3 years ago.
Posted over 12 years ago by Frank
Posted over 12 years ago by
Posted over 12 years ago by Lukas Kahwe Smith
Posted over 12 years ago by Tristan BESSOUSSA
Posted over 12 years ago by khepin
Posted over 12 years ago by Tom Maaswinkel
Update:�See�http://12wiki.blogspot.nl/2012/12/bundle-for-faster-generation-of-entity.html for an improved implementation.One of the great features of Symfony 2 is the simplicity of rendering a form, even when you're using external entities. The only ... [More] problem is that rendering a dropdown with 3662 entities is quite slow. In my case this took almost 2 seconds! In this specific case I am rendering a list of customers during the creation of an order. Here's the code I use: namespace [...] [Less]
Posted over 12 years ago by Tom Maaswinkel
As some of you might have noticed by now, I am quite interested in the performance of my application. Since Symfony 2 has such a great profiler I was looking for a way to time my own code within the existing profiler and without writing to much code. ... [More] After some digging I figured out it is quite easy to do so: class OrderController extends Controller{ public function showAction($id) { $stopwatch = $this->get('debug.stopwatch'); $stopwatch->start("eventName"); // ... code you want to time ... [...] [Less]
Posted over 12 years ago by Lukas Kahwe Smith
Posted over 12 years ago by Tomasz Ducin
Posted over 12 years ago by r1pp3rj4ck
I’m pretty sure many of you don’t like to download the latest version of Symfony Standard Distribution from symfony.com, install it, remove the AcmeDemoBundle from src directory and remove those stuff mentioning it every time you start a new project. I don’t like it either. Fortunately, I have a better way to do so. hacfi from […]