Here's the code I'm using to get the records. I need to know is there any thing like find first 100 or top 100 records and then paginate it. the db will contain 1000's of records ;)
$options = array(
'limit' => 10,
'recursive' => 0
);
$this->paginate = $options;
$this->set('movies',$this->paginate());
Everything working fine, But I need just top 100 records and pagination only for that 100 records. I searched in many places, I couldn't find. Hope someone will help me :)