Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ProLoser/CakePHP-ClosureBehavior

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CakePHP Closure Behavior

An efficient alternative to the CakePHP Tree Behavior

Background

I was working on a project, where I listed multiple posts on the homepage and wanted to show the categories they fell under as breadcrumbs. Normally the tree behavior works just fine, but if I have 40 posts, I now do 1 query for the list of posts and 40 queries to get a list of all ancestor categories for the post. This didn't seem like a good idea, so I started to look for ways around this. generateTreeList and an iterator function seemed more viable, cutting my query down to 2, but the function itself would prove to be complex and slow.

After searching for feedback on irc.freenode.net/php someone pointed me to an interesting slideshow where I learned about the 'Closure' pattern (page 68). It seems to be a much more efficient alternative to MPTT. So this is my attempt to implement it.

An interesting example implementation: http://codepad.org/pR5r68V0

Installation

With Git

git submodule add [email protected]:ProLoser/CakePHP-ClosureBehavior.git Plugin/Closure

Without Git

Download package and extract to Plugin/Closure

About

An efficient alternative to CakePHP Tree Behavior

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages