Posted by amolbhavsar on May 11, 2011 at 12:01pm
Hi All,
I am using Drupal 7.
In a page for loading a node of particular content type, I am using node_load_multiple().
Due to some unknown reason, the page is taking too time that the page never loads.
Can somebody please tell me what must have gone wrong?
Looking forward for help from somebody.
Thanks.
Comments
node_load_multiple() does
node_load_multiple() does load the full node object, so if you are loading a lot of nodes for sure it'll take long. Either enable the built-in caching or build a custom query if you don't need the full node object.