Hi all,
I saw this topic
http://www.eioba.com/a77342/prado_performance_tuning_for_high_traffic_web_applications , I really like it but there are something unclear with me.
Can anybody give me more examples code about:
c) Set cache class * * * * *
Don't generate all the data on every request. PRADO can save parsed templates, configurations etc. in cache. (can be enabled in application.xml)
d) Keep pagestate in your database * * * *
PRADO pagestate can be really big – it’s about 10kb-100kb of data. And by default, you send this data on every AJAX request! (just use TDatabasePageStatePersister class)
e) Sometimes it's better to set PostState of ActiveControl to false *
If you have a control like TAutoSuggest, by setting this option, you prevent PRADO from gathering all fields on a form values, on every AJAX request. ( ActiveControl.ClientSide.PostState="false" )
Thank you so much,
Best Regards,