CakePHP 2.0 Read Recursive

Something that caught me out when I was using CakePHP at first

This is something that caught me out several times when I was new to CakePHP, so I thought I would post it here in case you are in a similar situation.

I was hitting issues that when I was viewing the variables available to a view (using the CakePHP Debug Toolbar) were I was noticing that I was bringing back far more information than I needed (and occasionally, not enough)

Bringing back too much information is never a good thing, it is inefficient and a possible security leak.

The reason for this is that in CakePHP the Read, Find or FindAll takes in a value called Recursive.

To set the level of recursion you do something similar to the following;

$this->Model->recursive = 1

There are 4 settings, which can be read about in detail in the CakePHP Book, but you can use this to make Read, Find or FindAll not perform JOINS (or perform more of them!).

Be sure that your selections only ever return the data they need to and no more.


Recent posts View all

Ruby

Forcing a Rails database column to be not null

How you can force a table column to always have something in it with Rails

Writing Marketing

We've deleted an article's worth of unhelpful words

We've improved several pages across our site by removing words that add no value, and often detract from the article.