All talks > Talks tagged with performance
performance sufferings If your prestashop 1.2 database is populated with few hundred customer records, your e-shop may be in real danger of very bad performance. The problem lies in lack of properly set MySQL indexes and primary keys. Within the time, your shop may be unusable, because MySQL se[...]
Hello community,I have one question about Symfony2.1 performance. I have built an application with [...]
I'm using symfony 1.4/propel 1.4 for a project, which was made by other developer earlier. On that project, propel connection is taken by using following code $con = Propel::getConnection(UsersPeer::DATABASE_NAME, Propel::CONNECTION_WRITE); However it never closes the connection[...]
On my website I wanted to increase the performance on certain pages, so i've decided to put varnish on 2 pages. Homepage List page Those 2 respective controllers has tag @Cache(smaxage="10800") (and only on those 2 controllers) As you may have notice, there is a dynamic menu o[...]
I've live project experience with Code Igniter and cake PHP. However now I need to work on a huge project for which both of them are not suitable. I'm nearly decided to go with symfony 1.4 (2.0 isn't an option, according to my client's requirements) In Symfony 1.4 too, I'm confuse[...]
I'm new to Symfony and take over Symfony 1.4 (Propel ORM) project in the company from someone who resigned with immediate effect. I went through jobeet tutorial and generally comfortable to Symfony. Now project is about to finish but when I see logs, I find lot of queries running [...]
hello together,i use symfony 2.1BETA4 and the same problem in lower versionsi have a performance pr[...]
I'm working on a Symfony form with non-entity fields (in a collection). What we're talking about For comprehension this is some code snippets : Form definition (in PieceType class): $builder ->add('name', 'text', array('max_length' => 70, [...]
I'm Symfony 2 project going to define my own param converter for my classes that inherit from TenantableEntityInterface. The framework itself provide a default a DoctrineConverter while my own converter is quite similar but should be the only one to be executed (also for performanc[...]
Is there any thing wrong in this method which violates symfony2 standards , any securty issue or performance issue? My Senior says you should not access the POST directly if($request->getMethod() == 'POST') as edit action has both GET and POSt requests, so if it is not good how can[...]