Closed (fixed)
Project:
Boost
Version:
6.x-1.x-dev
Component:
Caching logic
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
16 Dec 2009 at 14:50 UTC
Updated:
6 Feb 2010 at 22:20 UTC
Jump to comment: Most recent file
Comments
Comment #1
mikeytown2 commentedOne more module to add into the mix
http://drupal.org/project/path_redirect
Should do what your looking to do - 1 Path for 1 node. Be sure to clear the boost cache after enabling so the new redirects will work.
In the mean time I've changed this into a feature request; so you can disable boost from caching a url if that url is in the url alias table.
Comment #2
mikeytown2 commentedPseudocode
Inside boost_is_cacheable()
SELECT count(*) FROM url_alias WHERE src = $path; if > 0 and "this setting is enabled" then don't cache this page since an alias exists for it.
Comment #3
mikeytown2 commentedThis needs testing... not sure if it will work in its current form; my gut says no.
Comment #4
digi24 commentedThanks, I am testing your patch right now and will give feedback. I made some adjustments elsewhere, so I'll have to revert them first.
In case somebody else is testing it, do not forget to add round brackets in the SQL-part.
Comment #5
mikeytown2 commentedcommitted