The site is obviously not safe for work (well your work not mine).
Tomorrow our site, with over 100 million page views per day, will be relaunching running on Symfony2. This is a complete rewrite. Prior to that it was running the Catalyst Engine written in Perl.
Working in Symfony2 has been great and everyone involved loves Symfony2. I want to thank you guys for all your hard work. You've created a great framework.
Wish us luck!
~Eric
This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
> The site is obviously not safe for work (well your work not mine).
> Tomorrow our site, with over 100 million page views per day, will be relaunching running on Symfony2. This is a complete rewrite. Prior to that it was running the Catalyst Engine written in Perl.
> Working in Symfony2 has been great and everyone involved loves Symfony2. I want to thank you guys for all your hard work. You've created a great framework.
> Wish us luck!
> ~Eric
> This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
Hi Daniel, I plan to put one together. I need to see with the CTO how many details I can give away. We have a pretty cutting-edge stack of components so I'm hoping to let the world know.
I can tell you right away that clearing the app/cache when you change templates, configs, routing, etc is a complete nightmare. Webservers will run at 100% for 5-6 minutes even with Varnish handling most hits. 503s are a pain.
Once I finish putting out fires like "this hidden and undocumented feature that was implemented years before I got involved is now broken", I'll put some detailed information together and run it by the CTO for clearance to publish.
~Eric
________________________________________ From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Richtermeister [nex...@gmail.com] Sent: Monday, January 30, 2012 2:21 PM To: Symfony developers Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
That's awesome, congratz!
I'm sure that would make for a great case study as to why you switched and what challenges you encountered/overcame.. Any interest in sharing details?
Daniel
On Jan 23, 6:54 pm, Eric Pickup <Eric.Pic...@manwin.com> wrote:
> The site is obviously not safe for work (well your work not mine).
> Tomorrow our site, with over 100 million page views per day, will be relaunching running on Symfony2. This is a complete rewrite. Prior to that it was running the Catalyst Engine written in Perl.
> Working in Symfony2 has been great and everyone involved loves Symfony2. I want to thank you guys for all your hard work. You've created a great framework.
> Wish us luck!
> ~Eric
> This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
-- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to symfony-devs@googlegroups.com To unsubscribe from this group, send email to symfony-devs+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
> I can tell you right away that clearing the app/cache when you change templates, configs, routing, etc is a complete nightmare. Webservers will run at 100% for 5-6 minutes even with Varnish handling most hits. 503s are a pain.
Well, it can be easily solved.
Create 2 installations of your site, point one to dev.yourdomain.com,
second - to the yourdomain.com.
Second - stable release. Do not change anything on it.
First - dev version. As soon as it will be ready for the deployment -
switch main domain on it (using dns/server settings etc.)
On Thu, Feb 2, 2012 at 10:26 AM, zhil <star...@gmail.com> wrote: > > I can tell you right away that clearing the app/cache when you change > templates, configs, routing, etc is a complete nightmare. Webservers will > run at 100% for 5-6 minutes even with Varnish handling most hits. 503s are > a pain.
If you have a massive cache because of all the pages, you might want to look into mounting app/cache using tmpfs then clear the cache by just remounting the partition as it's a memory partition. On such a high traffic site memory caching solutions would probably work best if it is feasible with your current infrastructure. Even memcache would be great as you can simply restart the daemon to wipe your cache.
If memory is not an option due to budget/infrastructure then you can move the cache folder to say "cache.old" and re-create it and then delete it at a more acceptable pace that doesn't affect the load on the servers whilst it is sitting somewhere else.
> Hi Daniel,
> I plan to put one together. I need to see with the CTO how many details I can give away. We have a pretty cutting-edge stack of components so I'm hoping to let the world know.
> I can tell you right away that clearing the app/cache when you change templates, configs, routing, etc is a complete nightmare. Webservers will run at 100% for 5-6 minutes even with Varnish handling most hits. 503s are a pain.
> Once I finish putting out fires like "this hidden and undocumented feature that was implemented years before I got involved is now broken", I'll put some detailed information together and run it by the CTO for clearance to publish.
> ~Eric
> ________________________________________
> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Richtermeister [nex...@gmail.com]
> Sent: Monday, January 30, 2012 2:21 PM
> To: Symfony developers
> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
> That's awesome, congratz!
> I'm sure that would make for a great case study as to why you switched
> and what challenges you encountered/overcame..
> Any interest in sharing details?
> Daniel
> On Jan 23, 6:54 pm, Eric Pickup <Eric.Pic...@manwin.com> wrote:
> > The site is obviously not safe for work (well your work not mine).
> > Tomorrow our site, with over 100 million page views per day, will be relaunching running on Symfony2. This is a complete rewrite. Prior to that it was running the Catalyst Engine written in Perl.
> > Working in Symfony2 has been great and everyone involved loves Symfony2. I want to thank you guys for all your hard work. You've created a great framework.
> > Wish us luck!
> > ~Eric
> > This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
> --
> If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
> You received this message because you are subscribed to the Google
> Groups "symfony developers" group.
> To post to this group, send email to symfony-devs@googlegroups.com
> To unsubscribe from this group, send email to
> symfony-devs+unsubscribe@googlegroups.com
> For more options, visit this group athttp://groups.google.com/group/symfony-devs?hl=en > This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
I've started working on an article. I've been given permission to talk about everything that isn't directly security related so it will be quite detailed.
It was a successful launch by the way. Everyone is quite happy with the results.
~Eric
________________________________________
From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Dmitry Bykadorov [dmitry.bykado...@gmail.com]
Sent: Wednesday, February 01, 2012 1:48 AM
To: Symfony developers
Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
What an amazing news! )))))))
Eric, could you share your invaluable experience about highload
application creation on Symfony2? E.g. article or slidecat?
On 31 янв, 06:55, Eric Pickup <Eric.Pic...@manwin.com> wrote:
> Hi Daniel,
> I plan to put one together. I need to see with the CTO how many details I can give away. We have a pretty cutting-edge stack of components so I'm hoping to let the world know.
> I can tell you right away that clearing the app/cache when you change templates, configs, routing, etc is a complete nightmare. Webservers will run at 100% for 5-6 minutes even with Varnish handling most hits. 503s are a pain.
> Once I finish putting out fires like "this hidden and undocumented feature that was implemented years before I got involved is now broken", I'll put some detailed information together and run it by the CTO for clearance to publish.
> ~Eric
> ________________________________________
> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Richtermeister [nex...@gmail.com]
> Sent: Monday, January 30, 2012 2:21 PM
> To: Symfony developers
> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
> That's awesome, congratz!
> I'm sure that would make for a great case study as to why you switched
> and what challenges you encountered/overcame..
> Any interest in sharing details?
> Daniel
> On Jan 23, 6:54 pm, Eric Pickup <Eric.Pic...@manwin.com> wrote:
> > The site is obviously not safe for work (well your work not mine).
> > Tomorrow our site, with over 100 million page views per day, will be relaunching running on Symfony2. This is a complete rewrite. Prior to that it was running the Catalyst Engine written in Perl.
> > Working in Symfony2 has been great and everyone involved loves Symfony2. I want to thank you guys for all your hard work. You've created a great framework.
> > Wish us luck!
> > ~Eric
> > This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
> --
> If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
> You received this message because you are subscribed to the Google
> Groups "symfony developers" group.
> To post to this group, send email to symfony-devs@googlegroups.com
> To unsubscribe from this group, send email to
> symfony-devs+unsubscribe@googlegroups.com
> For more options, visit this group athttp://groups.google.com/group/symfony-devs?hl=en > This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
--
If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
You received this message because you are subscribed to the Google
Groups "symfony developers" group.
To post to this group, send email to symfony-devs@googlegroups.com
To unsubscribe from this group, send email to
symfony-devs+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
>I've started working on an article. I've been given permission to talk >about everything that isn't directly security related so it will be quite >detailed.
>It was a successful launch by the way. Everyone is quite happy with the >results.
>~Eric
>________________________________________ >From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on >behalf of Dmitry Bykadorov [dmitry.bykado...@gmail.com] >Sent: Wednesday, February 01, 2012 1:48 AM >To: Symfony developers >Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>What an amazing news! )))))))
>Eric, could you share your invaluable experience about highload >application creation on Symfony2? E.g. article or slidecat?
>On 31 янв, 06:55, Eric Pickup <Eric.Pic...@manwin.com> wrote: >> Hi Daniel, >> I plan to put one together. I need to see with the CTO how many >>details I can give away. We have a pretty cutting-edge stack of >>components so I'm hoping to let the world know.
>> I can tell you right away that clearing the app/cache when you change >>templates, configs, routing, etc is a complete nightmare. Webservers >>will run at 100% for 5-6 minutes even with Varnish handling most hits. >>503s are a pain.
>> Once I finish putting out fires like "this hidden and undocumented >>feature that was implemented years before I got involved is now broken", >>I'll put some detailed information together and run it by the CTO for >>clearance to publish.
>> ~Eric
>> ________________________________________ >> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on >>behalf of Richtermeister [nex...@gmail.com] >> Sent: Monday, January 30, 2012 2:21 PM >> To: Symfony developers >> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>> That's awesome, congratz!
>> I'm sure that would make for a great case study as to why you switched >> and what challenges you encountered/overcame.. >> Any interest in sharing details?
>> Daniel
>> On Jan 23, 6:54 pm, Eric Pickup <Eric.Pic...@manwin.com> wrote:
>> > The site is obviously not safe for work (well your work not mine).
>> > Tomorrow our site, with over 100 million page views per day, will be >>relaunching running on Symfony2. This is a complete rewrite. Prior to >>that it was running the Catalyst Engine written in Perl.
>> > Working in Symfony2 has been great and everyone involved loves >>Symfony2. I want to thank you guys for all your hard work. You've >>created a great framework.
>> > Wish us luck!
>> > ~Eric
>> > This e-mail may be privileged and/or confidential, and the sender >>does not waive any related rights and obligations. Any distribution, use >>or copying of this e-mail or the information it contains by other than >>an intended recipient is unauthorized. If you received this e-mail in >>error, please advise me (by return e-mail or otherwise) immediately. Ce >>courrier électronique est confidentiel et protégé. L'expéditeur ne >>renonce pas aux droits et obligations qui s'y rapportent. Toute >>diffusion, utilisation ou copie de ce message ou des renseignements >>qu'il contient par une personne autre que le (les) destinataire(s) >>désigné(s) est interdite. Si vous recevez ce courrier électronique par >>erreur, veuillez m'en aviser immédiatement, par retour de courrier >>électronique ou par un autre moyen.
>> -- >> If you want to report a vulnerability issue on symfony, please send it >>to security at symfony-project.com
>> You received this message because you are subscribed to the Google >> Groups "symfony developers" group. >> To post to this group, send email to symfony-devs@googlegroups.com >> To unsubscribe from this group, send email to >> symfony-devs+unsubscribe@googlegroups.com >> For more options, visit this group >>athttp://groups.google.com/group/symfony-devs?hl=en >> This e-mail may be privileged and/or confidential, and the sender does >>not waive any related rights and obligations. Any distribution, use or >>copying of this e-mail or the information it contains by other than an >>intended recipient is unauthorized. If you received this e-mail in >>error, please advise me (by return e-mail or otherwise) immediately. Ce >>courrier électronique est confidentiel et protégé. L'expéditeur ne >>renonce pas aux droits et obligations qui s'y rapportent. Toute >>diffusion, utilisation ou copie de ce message ou des renseignements >>qu'il contient par une personne autre que le (les) destinataire(s) >>désigné(s) est interdite. Si vous recevez ce courrier électronique par >>erreur, veuillez m'en aviser immédiatement, par retour de courrier >>électronique ou par un autre moyen.
>-- >If you want to report a vulnerability issue on symfony, please send it to >security at symfony-project.com
>You received this message because you are subscribed to the Google >Groups "symfony developers" group. >To post to this group, send email to symfony-devs@googlegroups.com >To unsubscribe from this group, send email to >symfony-devs+unsubscribe@googlegroups.com >For more options, visit this group at >http://groups.google.com/group/symfony-devs?hl=en >This e-mail may be privileged and/or confidential, and the sender does >not waive any related rights and obligations. Any distribution, use or >copying of this e-mail or the information it contains by other than an >intended recipient is unauthorized. If you received this e-mail in error, >please advise me (by return e-mail or otherwise) immediately. Ce courrier >électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >copie de ce message ou des renseignements qu'il contient par une personne >autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >recevez ce courrier électronique par erreur, veuillez m'en aviser >immédiatement, par retour de courrier électronique ou par un autre moyen.
>-- >If you want to report a vulnerability issue on symfony, please send it to >security at symfony-project.com
>You received this message because you are subscribed to the Google >Groups "symfony developers" group. >To post to this group, send email to symfony-devs@googlegroups.com >To unsubscribe from this group, send email to >symfony-devs+unsubscribe@googlegroups.com >For more options, visit this group at >http://groups.google.com/group/symfony-devs?hl=en
> -- > Hugo HAMON > Responsable Pôle Formations > eXTREME SENSIO /// SENSIO LABS > hugo.ha...@sensio.com > 01 40 99 82 11 > 92-98 boulevard Victor Hugo > Entrée A2/A3 - 92 115 Clichy Cedex - www.sensiolabs.com
> Le 10/02/12 04:20, « Eric Pickup »<Eric.Pic...@manwin.com> a écrit :
>> I've started working on an article. I've been given permission to talk >> about everything that isn't directly security related so it will be quite >> detailed.
>> It was a successful launch by the way. Everyone is quite happy with the >> results.
>> ~Eric
>> ________________________________________ >> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on >> behalf of Dmitry Bykadorov [dmitry.bykado...@gmail.com] >> Sent: Wednesday, February 01, 2012 1:48 AM >> To: Symfony developers >> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>> What an amazing news! )))))))
>> Eric, could you share your invaluable experience about highload >> application creation on Symfony2? E.g. article or slidecat?
>> On 31 янв, 06:55, Eric Pickup<Eric.Pic...@manwin.com> wrote: >>> Hi Daniel, >>> I plan to put one together. I need to see with the CTO how many >>> details I can give away. We have a pretty cutting-edge stack of >>> components so I'm hoping to let the world know.
>>> I can tell you right away that clearing the app/cache when you change >>> templates, configs, routing, etc is a complete nightmare. Webservers >>> will run at 100% for 5-6 minutes even with Varnish handling most hits. >>> 503s are a pain.
>>> Once I finish putting out fires like "this hidden and undocumented >>> feature that was implemented years before I got involved is now broken", >>> I'll put some detailed information together and run it by the CTO for >>> clearance to publish.
>>> ~Eric
>>> ________________________________________ >>> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on >>> behalf of Richtermeister [nex...@gmail.com] >>> Sent: Monday, January 30, 2012 2:21 PM >>> To: Symfony developers >>> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>>> That's awesome, congratz!
>>> I'm sure that would make for a great case study as to why you switched >>> and what challenges you encountered/overcame.. >>> Any interest in sharing details?
>>> Daniel
>>> On Jan 23, 6:54 pm, Eric Pickup<Eric.Pic...@manwin.com> wrote:
>>>> The site is obviously not safe for work (well your work not mine).
>>>> Tomorrow our site, with over 100 million page views per day, will be >>> relaunching running on Symfony2. This is a complete rewrite. Prior to >>> that it was running the Catalyst Engine written in Perl.
>>>> Working in Symfony2 has been great and everyone involved loves >>> Symfony2. I want to thank you guys for all your hard work. You've >>> created a great framework.
>>>> Wish us luck!
>>>> ~Eric
>>>> This e-mail may be privileged and/or confidential, and the sender >>> does not waive any related rights and obligations. Any distribution, use >>> or copying of this e-mail or the information it contains by other than >>> an intended recipient is unauthorized. If you received this e-mail in >>> error, please advise me (by return e-mail or otherwise) immediately. Ce >>> courrier électronique est confidentiel et protégé. L'expéditeur ne >>> renonce pas aux droits et obligations qui s'y rapportent. Toute >>> diffusion, utilisation ou copie de ce message ou des renseignements >>> qu'il contient par une personne autre que le (les) destinataire(s) >>> désigné(s) est interdite. Si vous recevez ce courrier électronique par >>> erreur, veuillez m'en aviser immédiatement, par retour de courrier >>> électronique ou par un autre moyen.
>>> -- >>> If you want to report a vulnerability issue on symfony, please send it >>> to security at symfony-project.com
>>> You received this message because you are subscribed to the Google >>> Groups "symfony developers" group. >>> To post to this group, send email to symfony-devs@googlegroups.com >>> To unsubscribe from this group, send email to >>> symfony-devs+unsubscribe@googlegroups.com >>> For more options, visit this group >>> athttp://groups.google.com/group/symfony-devs?hl=en >>> This e-mail may be privileged and/or confidential, and the sender does >>> not waive any related rights and obligations. Any distribution, use or >>> copying of this e-mail or the information it contains by other than an >>> intended recipient is unauthorized. If you received this e-mail in >>> error, please advise me (by return e-mail or otherwise) immediately. Ce >>> courrier électronique est confidentiel et protégé. L'expéditeur ne >>> renonce pas aux droits et obligations qui s'y rapportent. Toute >>> diffusion, utilisation ou copie de ce message ou des renseignements >>> qu'il contient par une personne autre que le (les) destinataire(s) >>> désigné(s) est interdite. Si vous recevez ce courrier électronique par >>> erreur, veuillez m'en aviser immédiatement, par retour de courrier >>> électronique ou par un autre moyen.
>> -- >> If you want to report a vulnerability issue on symfony, please send it to >> security at symfony-project.com
>> You received this message because you are subscribed to the Google >> Groups "symfony developers" group. >> To post to this group, send email to symfony-devs@googlegroups.com >> To unsubscribe from this group, send email to >> symfony-devs+unsubscribe@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/symfony-devs?hl=en >> This e-mail may be privileged and/or confidential, and the sender does >> not waive any related rights and obligations. Any distribution, use or >> copying of this e-mail or the information it contains by other than an >> intended recipient is unauthorized. If you received this e-mail in error, >> please advise me (by return e-mail or otherwise) immediately. Ce courrier >> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >> copie de ce message ou des renseignements qu'il contient par une personne >> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >> recevez ce courrier électronique par erreur, veuillez m'en aviser >> immédiatement, par retour de courrier électronique ou par un autre moyen.
>> -- >> If you want to report a vulnerability issue on symfony, please send it to >> security at symfony-project.com
>> You received this message because you are subscribed to the Google >> Groups "symfony developers" group. >> To post to this group, send email to symfony-devs@googlegroups.com >> To unsubscribe from this group, send email to >> symfony-devs+unsubscribe@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/symfony-devs?hl=en
> There hasn't been a single sexist porn-related joke in this whole > discussion - what's wrong with us IT people? ;-)
> Honestly, can't wait for it, great job and truly terrific attitude re > sharing.
> Regards, > Manuel
> Am 10.02.12 09:21, schrieb Hugo Hamon:
> Awesome job Eric!
>> Can't wait to read your article.
>> Will you be at the Confoo conference?
>> Cheers.
>> -- >> Hugo HAMON >> Responsable Pôle Formations >> eXTREME SENSIO /// SENSIO LABS >> hugo.ha...@sensio.com >> 01 40 99 82 11 >> 92-98 boulevard Victor Hugo >> Entrée A2/A3 - 92 115 Clichy Cedex - www.sensiolabs.com
>> Le 10/02/12 04:20, « Eric Pickup »<Eric.Pic...@manwin.com> a écrit :
>> I've started working on an article. I've been given permission to talk >>> about everything that isn't directly security related so it will be quite >>> detailed.
>>> It was a successful launch by the way. Everyone is quite happy with the >>> results.
>>> ~Eric
>>> ______________________________**__________ >>> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com**] on >>> behalf of Dmitry Bykadorov [dmitry.bykado...@gmail.com] >>> Sent: Wednesday, February 01, 2012 1:48 AM >>> To: Symfony developers >>> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>>> What an amazing news! )))))))
>>> Eric, could you share your invaluable experience about highload >>> application creation on Symfony2? E.g. article or slidecat?
>>> On 31 янв, 06:55, Eric Pickup<Eric.Pic...@manwin.com> wrote:
>>>> Hi Daniel, >>>> I plan to put one together. I need to see with the CTO how many >>>> details I can give away. We have a pretty cutting-edge stack of >>>> components so I'm hoping to let the world know.
>>>> I can tell you right away that clearing the app/cache when you change >>>> templates, configs, routing, etc is a complete nightmare. Webservers >>>> will run at 100% for 5-6 minutes even with Varnish handling most hits. >>>> 503s are a pain.
>>>> Once I finish putting out fires like "this hidden and undocumented >>>> feature that was implemented years before I got involved is now broken", >>>> I'll put some detailed information together and run it by the CTO for >>>> clearance to publish.
>>>> ~Eric
>>>> ______________________________**__________ >>>> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com**] >>>> on >>>> behalf of Richtermeister [nex...@gmail.com] >>>> Sent: Monday, January 30, 2012 2:21 PM >>>> To: Symfony developers >>>> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>>>> That's awesome, congratz!
>>>> I'm sure that would make for a great case study as to why you switched >>>> and what challenges you encountered/overcame.. >>>> Any interest in sharing details?
>>>> Daniel
>>>> On Jan 23, 6:54 pm, Eric Pickup<Eric.Pic...@manwin.com> wrote:
>>>> The site is obviously not safe for work (well your work not mine).
>>>> Tomorrow our site, with over 100 million page views per day, will be
>>>> relaunching running on Symfony2. This is a complete rewrite. Prior to >>>> that it was running the Catalyst Engine written in Perl.
>>>> Working in Symfony2 has been great and everyone involved loves
>>>> Symfony2. I want to thank you guys for all your hard work. You've >>>> created a great framework.
>>>> Wish us luck!
>>>> ~Eric
>>>> This e-mail may be privileged and/or confidential, and the sender
>>>> does not waive any related rights and obligations. Any distribution, use >>>> or copying of this e-mail or the information it contains by other than >>>> an intended recipient is unauthorized. If you received this e-mail in >>>> error, please advise me (by return e-mail or otherwise) immediately. Ce >>>> courrier électronique est confidentiel et protégé. L'expéditeur ne >>>> renonce pas aux droits et obligations qui s'y rapportent. Toute >>>> diffusion, utilisation ou copie de ce message ou des renseignements >>>> qu'il contient par une personne autre que le (les) destinataire(s) >>>> désigné(s) est interdite. Si vous recevez ce courrier électronique par >>>> erreur, veuillez m'en aviser immédiatement, par retour de courrier >>>> électronique ou par un autre moyen.
>>>> -- >>>> If you want to report a vulnerability issue on symfony, please send it >>>> to security at symfony-project.com
>>>> You received this message because you are subscribed to the Google >>>> Groups "symfony developers" group. >>>> To post to this group, send email to symfony-devs@googlegroups.com >>>> To unsubscribe from this group, send email to >>>> symfony-devs+unsubscribe@**googlegroups.com<symfony-devs%2Bunsubscribe@goog legroups.com> >>>> For more options, visit this group >>>> athttp://groups.google.com/**group/symfony-devs?hl=en<http://groups.google.com/group/symfony-devs?hl=en> >>>> This e-mail may be privileged and/or confidential, and the sender does >>>> not waive any related rights and obligations. Any distribution, use or >>>> copying of this e-mail or the information it contains by other than an >>>> intended recipient is unauthorized. If you received this e-mail in >>>> error, please advise me (by return e-mail or otherwise) immediately. Ce >>>> courrier électronique est confidentiel et protégé. L'expéditeur ne >>>> renonce pas aux droits et obligations qui s'y rapportent. Toute >>>> diffusion, utilisation ou copie de ce message ou des renseignements >>>> qu'il contient par une personne autre que le (les) destinataire(s) >>>> désigné(s) est interdite. Si vous recevez ce courrier électronique par >>>> erreur, veuillez m'en aviser immédiatement, par retour de courrier >>>> électronique ou par un autre moyen.
>>> -- >>> If you want to report a vulnerability issue on symfony, please send it to >>> security at symfony-project.com
>>> You received this message because you are subscribed to the Google >>> Groups "symfony developers" group. >>> To post to this group, send email to symfony-devs@googlegroups.com >>> To unsubscribe from this group, send email to >>> symfony-devs+unsubscribe@**googlegroups.com<symfony-devs%2Bunsubscribe@goog legroups.com> >>> For more options, visit this group at >>> http://groups.google.com/**group/symfony-devs?hl=en<http://groups.google.com/group/symfony-devs?hl=en> >>> This e-mail may be privileged and/or confidential, and the sender does >>> not waive any related rights and obligations. Any distribution, use or >>> copying of this e-mail or the information it contains by other than an >>> intended recipient is unauthorized. If you received this e-mail in error, >>> please advise me (by return e-mail or otherwise) immediately. Ce courrier >>> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >>> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >>> copie de ce message ou des renseignements qu'il contient par une personne >>> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >>> recevez ce courrier électronique par erreur, veuillez m'en aviser >>> immédiatement, par retour de courrier électronique ou par un autre moyen.
>>> -- >>> If you want to report a vulnerability issue on symfony, please send it to >>> security at symfony-project.com
>>> You received this message because you are subscribed to the Google >>> Groups "symfony developers" group. >>> To post to this group, send email to symfony-devs@googlegroups.com >>> To unsubscribe from this group, send email to >>> symfony-devs+unsubscribe@**googlegroups.com<symfony-devs%2Bunsubscribe@goog legroups.com> >>> For more options, visit this group at >>> http://groups.google.com/**group/symfony-devs?hl=en<http://groups.google.com/group/symfony-devs?hl=en>
> -- > Manuel Kiessling
> -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com
> You received this message because you are subscribed to the Google > Groups "symfony developers" group. > To post to this group, send email to symfony-devs@googlegroups.com > To unsubscribe from this group, send email to > symfony-devs+unsubscribe@**googlegroups.com<symfony-devs%2Bunsubscribe@goog legroups.com> > For more options, visit this group at > http://groups.google.com/**group/symfony-devs?hl=en<http://groups.google.com/group/symfony-devs?hl=en>
I've also noted the lack of porn comments and I'm quite proud of you guys :P.
I'm working on my notes right now but since I have been asked to give the Keynote on Wednesday the 29th at the Confoo conference on this topic, my aim is more towards that - I've never spoken to 500+ people at the same time LOL. I need to get well prepared. It will be announced tomorrow. Once I have the presentation ready, I'll develop that into a series of articles.
The presentation itself won't deal much with Symfony2 since a) Hugo himself will be doing training on it in much more detail and b) running Symfony2 at high traffic is more about the supporting technologies than the framework itself. With enough servers and the right tech, I could probably get Zend Framework working at our level although I would have to question my sanity for trying to. I'll cover the specifics of how we implemented Symfony2 itself more in the articles.
I feel we really went with best of breed for everything on this project. It was the smoothest relaunch ever and we've done a bunch of them.
~Eric
________________________________________
From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Manuel Kiessling [man...@kiessling.net]
Sent: Friday, February 10, 2012 3:44 AM
To: symfony-devs@googlegroups.com
Cc: Hugo Hamon
Subject: Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
There hasn't been a single sexist porn-related joke in this whole
discussion - what's wrong with us IT people? ;-)
Honestly, can't wait for it, great job and truly terrific attitude re
sharing.
> --
> Hugo HAMON
> Responsable Pôle Formations
> eXTREME SENSIO /// SENSIO LABS
> hugo.ha...@sensio.com
> 01 40 99 82 11
> 92-98 boulevard Victor Hugo
> Entrée A2/A3 - 92 115 Clichy Cedex - www.sensiolabs.com
> Le 10/02/12 04:20, « Eric Pickup »<Eric.Pic...@manwin.com> a écrit :
>> I've started working on an article. I've been given permission to talk
>> about everything that isn't directly security related so it will be quite
>> detailed.
>> It was a successful launch by the way. Everyone is quite happy with the
>> results.
>> ~Eric
>> ________________________________________
>> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on
>> behalf of Dmitry Bykadorov [dmitry.bykado...@gmail.com]
>> Sent: Wednesday, February 01, 2012 1:48 AM
>> To: Symfony developers
>> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>> What an amazing news! )))))))
>> Eric, could you share your invaluable experience about highload
>> application creation on Symfony2? E.g. article or slidecat?
>> On 31 янв, 06:55, Eric Pickup<Eric.Pic...@manwin.com> wrote:
>>> Hi Daniel,
>>> I plan to put one together. I need to see with the CTO how many
>>> details I can give away. We have a pretty cutting-edge stack of
>>> components so I'm hoping to let the world know.
>>> I can tell you right away that clearing the app/cache when you change
>>> templates, configs, routing, etc is a complete nightmare. Webservers
>>> will run at 100% for 5-6 minutes even with Varnish handling most hits.
>>> 503s are a pain.
>>> Once I finish putting out fires like "this hidden and undocumented
>>> feature that was implemented years before I got involved is now broken",
>>> I'll put some detailed information together and run it by the CTO for
>>> clearance to publish.
>>> ~Eric
>>> ________________________________________
>>> From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on
>>> behalf of Richtermeister [nex...@gmail.com]
>>> Sent: Monday, January 30, 2012 2:21 PM
>>> To: Symfony developers
>>> Subject: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
>>> That's awesome, congratz!
>>> I'm sure that would make for a great case study as to why you switched
>>> and what challenges you encountered/overcame..
>>> Any interest in sharing details?
>>> Daniel
>>> On Jan 23, 6:54 pm, Eric Pickup<Eric.Pic...@manwin.com> wrote:
>>>> The site is obviously not safe for work (well your work not mine).
>>>> Tomorrow our site, with over 100 million page views per day, will be
>>> relaunching running on Symfony2. This is a complete rewrite. Prior to
>>> that it was running the Catalyst Engine written in Perl.
>>>> Working in Symfony2 has been great and everyone involved loves
>>> Symfony2. I want to thank you guys for all your hard work. You've
>>> created a great framework.
>>>> Wish us luck!
>>>> ~Eric
>>>> This e-mail may be privileged and/or confidential, and the sender
>>> does not waive any related rights and obligations. Any distribution, use
>>> or copying of this e-mail or the information it contains by other than
>>> an intended recipient is unauthorized. If you received this e-mail in
>>> error, please advise me (by return e-mail or otherwise) immediately. Ce
>>> courrier électronique est confidentiel et protégé. L'expéditeur ne
>>> renonce pas aux droits et obligations qui s'y rapportent. Toute
>>> diffusion, utilisation ou copie de ce message ou des renseignements
>>> qu'il contient par une personne autre que le (les) destinataire(s)
>>> désigné(s) est interdite. Si vous recevez ce courrier électronique par
>>> erreur, veuillez m'en aviser immédiatement, par retour de courrier
>>> électronique ou par un autre moyen.
>>> --
>>> If you want to report a vulnerability issue on symfony, please send it
>>> to security at symfony-project.com
>>> You received this message because you are subscribed to the Google
>>> Groups "symfony developers" group.
>>> To post to this group, send email to symfony-devs@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> symfony-devs+unsubscribe@googlegroups.com
>>> For more options, visit this group
>>> athttp://groups.google.com/group/symfony-devs?hl=en >>> This e-mail may be privileged and/or confidential, and the sender does
>>> not waive any related rights and obligations. Any distribution, use or
>>> copying of this e-mail or the information it contains by other than an
>>> intended recipient is unauthorized. If you received this e-mail in
>>> error, please advise me (by return e-mail or otherwise) immediately. Ce
>>> courrier électronique est confidentiel et protégé. L'expéditeur ne
>>> renonce pas aux droits et obligations qui s'y rapportent. Toute
>>> diffusion, utilisation ou copie de ce message ou des renseignements
>>> qu'il contient par une personne autre que le (les) destinataire(s)
>>> désigné(s) est interdite. Si vous recevez ce courrier électronique par
>>> erreur, veuillez m'en aviser immédiatement, par retour de courrier
>>> électronique ou par un autre moyen.
>> --
>> If you want to report a vulnerability issue on symfony, please send it to
>> security at symfony-project.com
>> You received this message because you are subscribed to the Google
>> Groups "symfony developers" group.
>> To post to this group, send email to symfony-devs@googlegroups.com
>> To unsubscribe from this group, send email to
>> symfony-devs+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/symfony-devs?hl=en >> This e-mail may be privileged and/or confidential, and the sender does
>> not waive any related rights and obligations. Any distribution, use or
>> copying of this e-mail or the information it contains by other than an
>> intended recipient is unauthorized. If you received this e-mail in error,
>> please advise me (by return e-mail or otherwise) immediately. Ce courrier
>> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux
>> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou
>> copie de ce message ou des renseignements qu'il contient par une personne
>> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous
>> recevez ce courrier électronique par erreur, veuillez m'en aviser
>> immédiatement, par retour de courrier électronique ou par un autre moyen.
>> --
>> If you want to report a vulnerability issue on symfony, please send it to
>> security at symfony-project.com
>> You received this message because you are subscribed to the Google
>> Groups "symfony developers" group.
>> To post to this group, send email to symfony-devs@googlegroups.com
>> To unsubscribe from this group, send email to
>> symfony-devs+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/symfony-devs?hl=en
--
Manuel Kiessling
--
If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
You received this message because you are subscribed to the Google
Groups "symfony developers" group.
To post to this group, send email to symfony-devs@googlegroups.com
To unsubscribe from this group, send email to
symfony-devs+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce
...
great job! Looking forward on article about this project. Can you tell me how many developers were participating in development? And how long development last? Just aproximatly.
> On 14.02.2012 02:58, Eric Pickup wrote: >> I'm working on my notes right now but since I have been asked to give the Keynote on Wednesday the 29th at the Confoo conference on this topic > Great. Looking forward to hearing that one. Sounds way better than the > typical sales pitches of main conference sponsors :)
Great news :-) I'm currently working hard on a complete rewrite of our site. We don't have as many impressions as youporn has but I'm quite interested in the challenges you overcame. I'm looking forward to your report :-)
By the way: what were the reasons for symfony2, and what was the reason for the complete relaunch with changes only related to the backend, and leaving the frontend as it is/was?!
i started the development of a CSR community some time ago with Symfony2 and spent many night thinking: "Will it be suitable for our requirements, will it be stable for all those page hits" and then i'm reading this! Quite awesome to hear that such a highly visited website uses the same framework - good job Eric!
May i ask if you used some library for rendering the menus and i you use some kind of "auto generated" administrator back-end for all the database-entities? How much work had the marriage between Doctrine (I assume you use Doctrine?) and Redis been? And last but not least: which search engine did you use?
that site's security flaw is all over the news, I am not sure then why it was so much advertised and supported on this dev ml. I hope it is not sf2's fault.
On Tue, Feb 21, 2012 at 4:31 PM, Andreas Schmidt <
andi.primuspor...@googlemail.com> wrote: > Great news :-) I'm currently working hard on a complete rewrite of our > site. We don't have as many impressions as youporn has but I'm quite > interested in the challenges you overcame. I'm looking forward to your > report :-)
> By the way: what were the reasons for symfony2, and what was the reason > for the complete relaunch with changes only related to the backend, and > leaving the frontend as it is/was?!
> Greetz from germany...
> -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com
> You received this message because you are subscribed to the Google > Groups "symfony developers" group. > To post to this group, send email to symfony-devs@googlegroups.com > To unsubscribe from this group, send email to > symfony-devs+unsubscribe@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/symfony-devs?hl=en
I actually covered this in my talk tonight. The requirement was that it should be transparent to end users. Our only tool to monitor success is traffic (we are not a paid site) so if a new feature or usability change improved or decreased traffic, we wouldn't know if the rewrite or this new change was the cause. There is also a brand issue. We have millions of loyal users and loyal users tend to love the "current" UI and that doesn't matter what site you are using.
Sorry for the late reply, I've been concentrating on the presentation.
On Tuesday, February 21, 2012 4:31:50 PM UTC-5, Andreas Schmidt wrote:
> Great news :-) I'm currently working hard on a complete rewrite of our > site. We don't have as many impressions as youporn has but I'm quite > interested in the challenges you overcame. I'm looking forward to your > report :-)
> By the way: what were the reasons for symfony2, and what was the reason > for the complete relaunch with changes only related to the backend, and > leaving the frontend as it is/was?!
I've done the talk and dined with Hugo and Fabian this evening afterwards. I also met with a Doctrine dev tonight.
Symfony2 is about 30% slower than our custom-built frameworks specifically designed for our needs and made as clean and simple as possible. You can get much faster with raw php with no framework and spend a lot of time doing development. If you want a framework that will perform and be flexible and feature rich, Symfony2 seems to be it.
The website itself reads only from Redis which has no Doctrine hooks. All writes use mysqli since it is the most direct and fastest.
Our Content Management System (which is larger than most external people would believe) is complete doctrine based. Doctrine saved us in fact since the CMS was late but it allowed to develop huge parts of it in days. Within 2 weeks we had enough of it developed to launch.
The XSS issue should be fixed tomorrow. I thank you for pointing it out.
~Eric
________________________________ From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Martin Aulich [martin.aulich.mo...@googlemail.com] Sent: Wednesday, February 22, 2012 5:14 PM To: symfony-devs@googlegroups.com Subject: Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
Hi folks,
i started the development of a CSR community some time ago with Symfony2 and spent many night thinking: "Will it be suitable for our requirements, will it be stable for all those page hits" and then i'm reading this! Quite awesome to hear that such a highly visited website uses the same framework - good job Eric!
May i ask if you used some library for rendering the menus and i you use some kind of "auto generated" administrator back-end for all the database-entities? How much work had the marriage between Doctrine (I assume you use Doctrine?) and Redis been? And last but not least: which search engine did you use?
-- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to symfony-devs@googlegroups.com To unsubscribe from this group, send email to symfony-devs+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
> I've done the talk and dined with Hugo and Fabian this evening > afterwards. I also met with a Doctrine dev tonight.
> Symfony2 is about 30% slower than our custom-built frameworks specifically > designed for our needs and made as clean and simple as possible. You can > get much faster with raw php with no framework and spend a lot of time > doing development. If you want a framework that will perform and be > flexible and feature rich, Symfony2 seems to be it.
> The website itself reads only from Redis which has no Doctrine hooks. All > writes use mysqli since it is the most direct and fastest.
> Our Content Management System (which is larger than most external people > would believe) is complete doctrine based. Doctrine saved us in fact since > the CMS was late but it allowed to develop huge parts of it in days. > Within 2 weeks we had enough of it developed to launch.
> The XSS issue should be fixed tomorrow. I thank you for pointing it out.
> ~Eric
> ------------------------------
> *From:* symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on > behalf of Martin Aulich [martin.aulich.mo...@googlemail.com]
> *Sent:* Wednesday, February 22, 2012 5:14 PM
> *To:* symfony-devs@googlegroups.com
> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
> Hi folks,
> i started the development of a CSR community some time ago with Symfony2 > and spent many night thinking: "Will it be suitable for our requirements, > will it be stable for all those page hits" and then i'm reading this!
> Quite awesome to hear that such a highly visited website uses the same > framework - good job Eric!
> May i ask if you used some library for rendering the menus and i you use > some kind of "auto generated" administrator back-end for all the > database-entities?
> How much work had the marriage between Doctrine (I assume you use > Doctrine?) and Redis been?
> And last but not least: which search engine did you use?
> -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com
> You received this message because you are subscribed to the Google
> Groups "symfony developers" group.
> To post to this group, send email to symfony-devs@googlegroups.com
> To unsubscribe from this group, send email to
> symfony-devs+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-devs?hl=en > This e-mail may be privileged and/or confidential, and the sender does > not waive any related rights and obligations. Any distribution, use or > copying of this e-mail or the information it contains by other than an > intended recipient is unauthorized. If you received this e-mail in error, > please advise me (by return e-mail or otherwise) immediately. Ce courrier > électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux > droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou > copie de ce message ou des renseignements qu'il contient par une personne > autre que le (les) destinataire(s) désigné(s) est interdite. Si vous > recevez ce courrier électronique par erreur, veuillez m'en aviser > immédiatement, par retour de courrier électronique ou par un autre moyen.
The Confoo guys hired a film crew and the video should be Youtube soon. I'll post a link as soon as I get it. The slides wouldn't be of much use by themselves anyway. They were mostly there to give people some reference.
The details were in the talk. From talking to the organizer, Confoo plans to release the highlights. We'll get the raw version and since Manwin has some of the best video guys I've ever seen we should have a full version available next week for viewing hopefully.
Eric Pickup YouPorn Lead Developer Manwin Canada Twitter: EricPickupYP Email: eric.pic...@manwin.com<mailto:eric.pic...@manwin.com>
________________________________ From: symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on behalf of Daniel A.Tiecher [datiec...@gmail.com] Sent: Thursday, March 01, 2012 2:27 PM To: symfony-devs@googlegroups.com Subject: Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
Do you have the slides of the talk online somewhere for poor folks like myself who where unable to attend ConFoo.ca? =)
Em quinta-feira, 1 de março de 2012 02h26min50s UTC-3, Eric Pickup escreveu:
I've done the talk and dined with Hugo and Fabian this evening afterwards. I also met with a Doctrine dev tonight.
Symfony2 is about 30% slower than our custom-built frameworks specifically designed for our needs and made as clean and simple as possible. You can get much faster with raw php with no framework and spend a lot of time doing development. If you want a framework that will perform and be flexible and feature rich, Symfony2 seems to be it.
The website itself reads only from Redis which has no Doctrine hooks. All writes use mysqli since it is the most direct and fastest.
Our Content Management System (which is larger than most external people would believe) is complete doctrine based. Doctrine saved us in fact since the CMS was late but it allowed to develop huge parts of it in days. Within 2 weeks we had enough of it developed to launch.
The XSS issue should be fixed tomorrow. I thank you for pointing it out.
~Eric
________________________________ From: symfony-devs@googlegroups.com<mailto:symfony-devs@googlegroups.com> [symfony-devs@googlegroups.com<mailto:symfony-devs@googlegroups.com>] on behalf of Martin Aulich [martin.aulich.mo...@googlemail.com<mailto:martin.aulich.mo...@googlemail.com>] Sent: Wednesday, February 22, 2012 5:14 PM To: symfony-devs@googlegroups.com<mailto:symfony-devs@googlegroups.com> Subject: Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
Hi folks,
i started the development of a CSR community some time ago with Symfony2 and spent many night thinking: "Will it be suitable for our requirements, will it be stable for all those page hits" and then i'm reading this! Quite awesome to hear that such a highly visited website uses the same framework - good job Eric!
May i ask if you used some library for rendering the menus and i you use some kind of "auto generated" administrator back-end for all the database-entities? How much work had the marriage between Doctrine (I assume you use Doctrine?) and Redis been? And last but not least: which search engine did you use?
-- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com<http://symfony-project.com>
You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to symfony-devs@googlegroups.com<mailto:symfony-devs@googlegroups.com> To unsubscribe from this group, send email to symfony-devs+unsubscribe@googlegroups.com<mailto:symfony-devs%2Bunsubscribe @googlegroups.com> For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
-- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com
You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to symfony-devs@googlegroups.com To unsubscribe from this group, send email to symfony-devs+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately. Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.
> The Confoo guys hired a film crew and the video should be Youtube soon.
> I'll post a link as soon as I get it. The slides wouldn't be of much use > by themselves anyway. They were mostly there to give people some reference.
> The details were in the talk. From talking to the organizer, Confoo plans > to release the highlights. We'll get the raw version and since Manwin has > some of the best video guys I've ever seen we should have a full version > available next week for viewing hopefully.
> ------------------------------
> *From:* symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on > behalf of Daniel A.Tiecher [datiec...@gmail.com]
> *Sent:* Thursday, March 01, 2012 2:27 PM
> *To:* symfony-devs@googlegroups.com
> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
> Do you have the slides of the talk online somewhere for poor folks like > myself who where unable to attend ConFoo.ca? =)
> Em quinta-feira, 1 de março de 2012 02h26min50s UTC-3, Eric Pickup > escreveu:
>> I've done the talk and dined with Hugo and Fabian this evening >> afterwards. I also met with a Doctrine dev tonight.
>> Symfony2 is about 30% slower than our custom-built frameworks >> specifically designed for our needs and made as clean and simple as >> possible. You can get much faster with raw php with no framework and spend >> a lot of time doing development. If you want a framework that will perform >> and be flexible and feature rich, Symfony2 seems to be it.
>> The website itself reads only from Redis which has no Doctrine hooks.
>> All writes use mysqli since it is the most direct and fastest.
>> Our Content Management System (which is larger than most external people >> would believe) is complete doctrine based. Doctrine saved us in fact since >> the CMS was late but it allowed to develop huge parts of it in days. >> Within 2 weeks we had enough of it developed to launch.
>> The XSS issue should be fixed tomorrow. I thank you for pointing it out.
>> ~Eric
>> ------------------------------
>> *From:* symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on >> behalf of Martin Aulich [martin.aulich.mo...@googlemail.com]
>> *Sent:* Wednesday, February 22, 2012 5:14 PM
>> *To:* symfony-devs@googlegroups.com
>> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On >> Symfony2!
>> Hi folks,
>> i started the development of a CSR community some time ago with Symfony2 >> and spent many night thinking: "Will it be suitable for our requirements, >> will it be stable for all those page hits" and then i'm reading this!
>> Quite awesome to hear that such a highly visited website uses the same >> framework - good job Eric!
>> May i ask if you used some library for rendering the menus and i you use >> some kind of "auto generated" administrator back-end for all the >> database-entities?
>> How much work had the marriage between Doctrine (I assume you use >> Doctrine?) and Redis been?
>> And last but not least: which search engine did you use?
>> -- >> If you want to report a vulnerability issue on symfony, please send it to >> security at symfony-project.com
>> You received this message because you are subscribed to the Google
>> Groups "symfony developers" group.
>> To post to this group, send email to symfony-devs@googlegroups.com
>> To unsubscribe from this group, send email to
>> symfony-devs+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/symfony-devs?hl=en >> This e-mail may be privileged and/or confidential, and the sender does >> not waive any related rights and obligations. Any distribution, use or >> copying of this e-mail or the information it contains by other than an >> intended recipient is unauthorized. If you received this e-mail in error, >> please advise me (by return e-mail or otherwise) immediately. Ce courrier >> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >> copie de ce message ou des renseignements qu'il contient par une personne >> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >> recevez ce courrier électronique par erreur, veuillez m'en aviser >> immédiatement, par retour de courrier électronique ou par un autre moyen.
> -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com
> You received this message because you are subscribed to the Google
> Groups "symfony developers" group.
> To post to this group, send email to symfony-devs@googlegroups.com
> To unsubscribe from this group, send email to
> symfony-devs+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-devs?hl=en > This e-mail may be privileged and/or confidential, and the sender does > not waive any related rights and obligations. Any distribution, use or > copying of this e-mail or the information it contains by other than an > intended recipient is unauthorized. If you received this e-mail in error, > please advise me (by return e-mail or otherwise) immediately. Ce courrier > électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux > droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou > copie de ce message ou des renseignements qu'il contient par une personne > autre que le (les) destinataire(s) désigné(s) est interdite. Si vous > recevez ce courrier électronique par erreur, veuillez m'en aviser > immédiatement, par retour de courrier électronique ou par un autre moyen.
On Friday, March 2, 2012 5:44:44 PM UTC+1, Daniel A.Tiecher wrote:
> Looking forward to that. Thanks for sharing the experience !
> Em quinta-feira, 1 de março de 2012 23h28min20s UTC-3, Eric Pickup > escreveu:
>> The Confoo guys hired a film crew and the video should be Youtube >> soon. I'll post a link as soon as I get it. The slides wouldn't be of >> much use by themselves anyway. They were mostly there to give people some >> reference.
>> The details were in the talk. From talking to the organizer, Confoo >> plans to release the highlights. We'll get the raw version and since >> Manwin has some of the best video guys I've ever seen we should have a full >> version available next week for viewing hopefully.
>> ------------------------------
>> *From:* symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] on >> behalf of Daniel A.Tiecher [datiec...@gmail.com]
>> *Sent:* Thursday, March 01, 2012 2:27 PM
>> *To:* symfony-devs@googlegroups.com
>> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On >> Symfony2!
>> Do you have the slides of the talk online somewhere for poor folks like >> myself who where unable to attend ConFoo.ca? =)
>> Em quinta-feira, 1 de março de 2012 02h26min50s UTC-3, Eric Pickup >> escreveu:
>>> I've done the talk and dined with Hugo and Fabian this evening >>> afterwards. I also met with a Doctrine dev tonight.
>>> Symfony2 is about 30% slower than our custom-built frameworks >>> specifically designed for our needs and made as clean and simple as >>> possible. You can get much faster with raw php with no framework and spend >>> a lot of time doing development. If you want a framework that will perform >>> and be flexible and feature rich, Symfony2 seems to be it.
>>> The website itself reads only from Redis which has no Doctrine hooks.
>>> All writes use mysqli since it is the most direct and fastest.
>>> Our Content Management System (which is larger than most external people >>> would believe) is complete doctrine based. Doctrine saved us in fact since >>> the CMS was late but it allowed to develop huge parts of it in days. >>> Within 2 weeks we had enough of it developed to launch.
>>> The XSS issue should be fixed tomorrow. I thank you for pointing it out.
>>> ~Eric
>>> ------------------------------
>>> *From:* symfony-devs@googlegroups.com [symfony-devs@googlegroups.com] >>> on behalf of Martin Aulich [martin.aulich.mo...@googlemail.com]
>>> *Sent:* Wednesday, February 22, 2012 5:14 PM
>>> *To:* symfony-devs@googlegroups.com
>>> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On >>> Symfony2!
>>> Hi folks,
>>> i started the development of a CSR community some time ago with Symfony2 >>> and spent many night thinking: "Will it be suitable for our requirements, >>> will it be stable for all those page hits" and then i'm reading this!
>>> Quite awesome to hear that such a highly visited website uses the same >>> framework - good job Eric!
>>> May i ask if you used some library for rendering the menus and i you use >>> some kind of "auto generated" administrator back-end for all the >>> database-entities?
>>> How much work had the marriage between Doctrine (I assume you use >>> Doctrine?) and Redis been?
>>> And last but not least: which search engine did you use?
>>> -- >>> If you want to report a vulnerability issue on symfony, please send it >>> to security at symfony-project.com
>>> You received this message because you are subscribed to the Google
>>> Groups "symfony developers" group.
>>> To post to this group, send email to symfony-devs@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> symfony-devs+unsubscribe@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/symfony-devs?hl=en >>> This e-mail may be privileged and/or confidential, and the sender >>> does not waive any related rights and obligations. Any distribution, use or >>> copying of this e-mail or the information it contains by other than an >>> intended recipient is unauthorized. If you received this e-mail in error, >>> please advise me (by return e-mail or otherwise) immediately. Ce courrier >>> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >>> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >>> copie de ce message ou des renseignements qu'il contient par une personne >>> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >>> recevez ce courrier électronique par erreur, veuillez m'en aviser >>> immédiatement, par retour de courrier électronique ou par un autre moyen.
>> -- >> If you want to report a vulnerability issue on symfony, please send it to >> security at symfony-project.com
>> You received this message because you are subscribed to the Google
>> Groups "symfony developers" group.
>> To post to this group, send email to symfony-devs@googlegroups.com
>> To unsubscribe from this group, send email to
>> symfony-devs+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/symfony-devs?hl=en >> This e-mail may be privileged and/or confidential, and the sender does >> not waive any related rights and obligations. Any distribution, use or >> copying of this e-mail or the information it contains by other than an >> intended recipient is unauthorized. If you received this e-mail in error, >> please advise me (by return e-mail or otherwise) immediately. Ce courrier >> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >> copie de ce message ou des renseignements qu'il contient par une personne >> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >> recevez ce courrier électronique par erreur, veuillez m'en aviser >> immédiatement, par retour de courrier électronique ou par un autre moyen.
On Thursday, March 1, 2012 8:28:20 PM UTC-6, Eric Pickup wrote:
> The Confoo guys hired a film crew and the video should be Youtube soon.
> I'll post a link as soon as I get it. The slides wouldn't be of much use > by themselves anyway. They were mostly there to give people some reference.
> The details were in the talk. From talking to the organizer, Confoo plans > to release the highlights. We'll get the raw version and since Manwin has > some of the best video guys I've ever seen we should have a full version > available next week for viewing hopefully.
> ------------------------------
> *From:* symfon...@googlegroups.com <javascript:> [
> symfon...@googlegroups.com <javascript:>] on behalf of Daniel A.Tiecher [
> dati...@gmail.com <javascript:>]
> *Sent:* Thursday, March 01, 2012 2:27 PM
> *To:* symfon...@googlegroups.com <javascript:>
> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On Symfony2!
> Do you have the slides of the talk online somewhere for poor folks like > myself who where unable to attend ConFoo.ca? =)
> Em quinta-feira, 1 de março de 2012 02h26min50s UTC-3, Eric Pickup > escreveu:
>> I've done the talk and dined with Hugo and Fabian this evening >> afterwards. I also met with a Doctrine dev tonight.
>> Symfony2 is about 30% slower than our custom-built frameworks >> specifically designed for our needs and made as clean and simple as >> possible. You can get much faster with raw php with no framework and spend >> a lot of time doing development. If you want a framework that will perform >> and be flexible and feature rich, Symfony2 seems to be it.
>> The website itself reads only from Redis which has no Doctrine hooks.
>> All writes use mysqli since it is the most direct and fastest.
>> Our Content Management System (which is larger than most external people >> would believe) is complete doctrine based. Doctrine saved us in fact since >> the CMS was late but it allowed to develop huge parts of it in days. >> Within 2 weeks we had enough of it developed to launch.
>> The XSS issue should be fixed tomorrow. I thank you for pointing it out.
>> ~Eric
>> ------------------------------
>> *From:* symfon...@googlegroups.com <javascript:> [
>> symfon...@googlegroups.com <javascript:>] on behalf of Martin Aulich [
>> martin.au...@googlemail.com <javascript:>]
>> *Sent:* Wednesday, February 22, 2012 5:14 PM
>> *To:* symfon...@googlegroups.com <javascript:>
>> *Subject:* Re: [symfony-devs] Re: Youporn Relaunches Tomorrow On >> Symfony2!
>> Hi folks,
>> i started the development of a CSR community some time ago with Symfony2 >> and spent many night thinking: "Will it be suitable for our requirements, >> will it be stable for all those page hits" and then i'm reading this!
>> Quite awesome to hear that such a highly visited website uses the same >> framework - good job Eric!
>> May i ask if you used some library for rendering the menus and i you use >> some kind of "auto generated" administrator back-end for all the >> database-entities?
>> How much work had the marriage between Doctrine (I assume you use >> Doctrine?) and Redis been?
>> And last but not least: which search engine did you use?
>> -- >> If you want to report a vulnerability issue on symfony, please send it to >> security at symfony-project.com
>> You received this message because you are subscribed to the Google
>> Groups "symfony developers" group.
>> To post to this group, send email to symfo...@googlegroups.com<javascript:>
>> To unsubscribe from this group, send email to
>> symfony-devs...@googlegroups.com <javascript:>
>> For more options, visit this group at
>> http://groups.google.com/group/symfony-devs?hl=en >> This e-mail may be privileged and/or confidential, and the sender does >> not waive any related rights and obligations. Any distribution, use or >> copying of this e-mail or the information it contains by other than an >> intended recipient is unauthorized. If you received this e-mail in error, >> please advise me (by return e-mail or otherwise) immediately. Ce courrier >> électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux >> droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou >> copie de ce message ou des renseignements qu'il contient par une personne >> autre que le (les) destinataire(s) désigné(s) est interdite. Si vous >> recevez ce courrier électronique par erreur, veuillez m'en aviser >> immédiatement, par retour de courrier électronique ou par un autre moyen.
> -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com
> You received this message because you are subscribed to the Google
> Groups "symfony developers" group.
> To post to this group, send email to symfon...@googlegroups.com<javascript:>
> To unsubscribe from this group, send email to
> symfony-devs...@googlegroups.com <javascript:>
> For more options, visit this group at
> http://groups.google.com/group/symfony-devs?hl=en > This e-mail may be privileged and/or confidential, and the sender does > not waive any related rights and obligations. Any distribution, use or > copying of this e-mail or the information it contains by other than an > intended recipient is unauthorized. If you received this e-mail in error, > please advise me (by return e-mail or otherwise) immediately. Ce courrier > électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux > droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou > copie de ce message ou des renseignements qu'il contient par une personne > autre que le (les) destinataire(s) désigné(s) est interdite. Si vous > recevez ce courrier électronique par erreur, veuillez m'en aviser > immédiatement, par retour de courrier électronique ou par un autre moyen.