Custom Query (2152 matches)
Results (376 - 378 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#541 | fixed | Full-page caching even for logged in users | wwaites | rgrp |
Description |
The simplest way to improve performance on specific pages is to implement full page caching. This, however, has challenges on pages with user-specific content. For example, on CKAN when a user is logged at the top of the page we have "You are logged in as: {username}". Similarly we change the visibility of some material depending on the status of users:
|
|||
#542 | fixed | 'Show and Tell' page customization using cookie + js | wwaites | rgrp |
Description |
To allow for full page caching even on customized pages for logged in users we can use cookie+javascript techniques as described here: http://www.ibm.com/developerworks/web/library/wa-rails2/ In the first place we just need to apply this to:
|
|||
#543 | duplicate | Investigate partial page caching and edge-side includes | wwaites | rgrp |
Description |
Edge-side includes or partial page caching are a standard way to deal with caching of pages in which some (usually small) part of the content cannot be cached or should be cached in a different manner (e.g. much more briefly) than the rest of the page. Edge-side includes have the advantage that they integrate with general 3rd-party caching systems such as varnish. Introducing either partial page or ESI will require some overhaul work to change the page render processing somewhat. |