Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am running a batch job that selects a batch of 100 documents, and then grabs all of the documents linked to it - possibly upto 25 for each.

I do the "join" using the ids from the first batch. So potentially I am calling session.load with 25 * 100 ids. I tried to implement paging, but it does not look possible using the load method which returns an array.

What is the best practice here?

share|improve this question

1 Answer

up vote 1 down vote accepted

Best practice is to use the .Include method rather than do what you are describing. You can read more in the documentation.

If you want to post some code of what you are doing now, I can provide a more detailed response.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.