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 developing a twitter application. The Twitter Followers API will return 5000 user-ids at a time as comma separated string. I need to pull the screen-name, followers count and following count from userlookup API. But this API will pull user details of 100 ids at a time.

Can anybody please help me in finding the most efficient/recommended way of breaking the comma separated string to batches of 100 userids and getting the user details?

share|improve this question
Which .Net Version? – Amar Palsapure Jan 12 '12 at 6:27
1  
What API? Can't you use a wrapper like linqtotwitter.codeplex.com – gideon Jan 12 '12 at 6:31
@AmarPalsapure - I am using .net 3.5. – Midhunlal G Jan 12 '12 at 6:35
@gideon - Thanks for the API. I need to look into it. – Midhunlal G Jan 12 '12 at 6:40

2 Answers

up vote 1 down vote accepted

Here is what you can do, split happens only once.

   string ids = "YOUR IDs";
   int limit = 100;
   List<string[]> store = new List<string[]>();
   var split = ids.Split(',');
   int counter = 0;
   while (true) {
       var batch = string.Join(",", split.Skip(counter++ * limit).Take(limit));
       if (string.IsNullOrEmpty(batch)) break;
       //Make your call here
   }
share|improve this answer
Thanks Amar for the code. This helped me. – Midhunlal G Jan 17 '12 at 7:44

I would use result.Split(",").Take(100) this will split the whole thing into an array and then take the top 100 results. If this doesnt perform fast enough you should manually stream the string to only read the first 100 commas. This will be slightly faster but not as syntactically elegant. In the first case you should still be able to process 5000 comma separated elements in a fraction of a second on any modern machine.

share|improve this answer
I have also thought of same way. But I was not sure about the performance. I will go for this way of execution. Thanks for the answer. – Midhunlal G Jan 12 '12 at 6:42
If you find it doesnt meet your performance needs try the stream approach which will technically be faster – Luke McGregor Jan 12 '12 at 10:33

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.