![]() |
Mongodb Paging - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Mongodb Paging (/showthread.php?tid=58266) |
Mongodb Paging - El Forum - 05-28-2013 [eluser]bedanand[/eluser] If you want to implement paging on mongodb you can use skip()+ limit() function but using these skip() function is performance penalty if there is a large data set. But there is a workaround without using skip() function. Here is the solution. codeigniter-mongodb-paging |