Forums / General / Improve the performance in Front-end

Improve the performance in Front-end

Author Message

Tony De Freitas

Tuesday 05 October 2010 7:27:56 pm

Hi folks, I'm new to the community.
I think "Ez publish" is great.
I would like to see "Ez Publish" in something like this:

http://googlecode.blogspot.com/2010/09/drupal-7-faster-than-ever.html
http://civicactions.com/blog/2010/aug/31/drupal-7-faster-than-ever
http://code.google.com/speed/index.html
Greetings

Marko Žmak

Wednesday 06 October 2010 3:13:27 am

Hi Tony.

Yes there are tools for such optimizations:

Also, eZ publih gives you complete control over HTML source of your page so you can easily integrate other techniques as well.

Furthermore, eZ can be used with varnish and other reverse proxies.

Does this answer your questions?

--
Nothing is impossible. Not if you can imagine it!

Hubert Farnsworth

André R.

Wednesday 06 October 2010 5:24:03 am

For improved front end performance you should among several things take advantage of mod_expires in apache. Not something you would want to enable during development, but in production it can make sure clients cache design files that barley change and images that have url pr version anyway using something like this.

Same thing can be done with packed js / css files using (from admin2pp project by Damien):

<LocationMatch ".*/var/[^/]+/cache/public/.*">
# ezjscore.ini/[Packer]/AppendLastModifiedTime=enabled
# so that file names change when source files are modified
     ExpiresActive on
     ExpiresDefault "now plus 10 years"
</LocationMatch>

eZ Online Editor 5: http://projects.ez.no/ezoe || eZJSCore (Ajax): http://projects.ez.no/ezjscore || eZ Publish EE http://ez.no/eZPublish/eZ-Publish-Enterprise-Subscription
@: http://twitter.com/andrerom

Nicolas Pastorino

Wednesday 06 October 2010 5:30:13 am

Hi Tony and welcome aboard !

I'd suggest you have a look at these fantastic slides by Damien Pobel :

http://pwet.fr/blog/frontend_performance_with_ez_publish_slides_are_online

Cheers !

--
Nicolas Pastorino
Director Community - eZ
Member of the Community Project Board

eZ Publish Community on twitter: http://twitter.com/ezcommunity

t : http://twitter.com/jeanvoye
G+ : http://plus.tl/jeanvoye

Tony De Freitas

Wednesday 06 October 2010 9:27:18 am

thanks people