Closed (fixed)
Project:
Ajaxify Regions
Version:
6.x-1.0
Component:
Miscellaneous
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
29 Jul 2009 at 13:37 UTC
Updated:
28 May 2010 at 19:50 UTC
Hi is it possible to exclude specific blocks from being boosted? E.G. "Ajax driven cart"
Comments
Comment #1
mikeytown2 commentedBoost works at a lower level then this. It caches the entire page as a html file and serves that. If your looking for something higher up try out http://drupal.org/project/cacherouter http://drupal.org/project/cache http://drupal.org/project/advcache http://drupal.org/project/modules?filters=drupal_core:87%20tid:123&solrs...
Comment #2
mikeytown2 commentedThe alt way is to use javascript to load the block
http://api.drupal.org/api/function/module_invoke
info.php
put in a block
http://api.drupal.org/api/function/statistics_block
Another Example
infoa.php
put in a block
http://api.drupal.org/api/function/user_block
Comment #3
ckidowthanks a lot... that helped me a lot
Comment #4
mikeytown2 commentedDon't know if this can handle things like ubercart, throwing it your way.
Comment #5
asak commentedInteresting question...
Comment #6
csevb10 commentedThis module is set up to provide a way to make your pages cacheable as flat html without destroying base functionality that should be dynamic.
Basically, this module replaces your default block (be that js, html, flash, whatever) with a js callback to this module. This allows the page to be cached with our js callback in place rather than pre-rendered html. So, for a shopping cart - which is dynamic - the cart would be replaced with a js callback to load the cart html at runtime.
- Default functionality
- Replace dynamic blocks with js callbacks
- Cache html w/ js callbacks
- Load page from cache w/ js callbacks
- Retrieve dynamic block content
- Replace dynamic block content
Let me know if that makes sense.
Hope that helps. Thanks!
Comment #7
csevb10 commentedI am working on a new release that will support (and is actually specifically intended) for use with shopping carts. It'll handle ajax-loading of non-cacheable and anonymous-dynamic blocks such as the shopping cart block. It'll also support filterable lists for both blocks and pages.
Comment #8
asak commented@csevb10: sounds cool, let us know when there's something to test ;)
Comment #9
csevb10 commentedThings have now been updated to support shopping carts. I have it built and running on a shopping cart for testing, and, as far as I can tell, everything is working as expected.
Comment #10
csevb10 commentedFixed in commit #366456