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.

When using the get method from LWP::UserAgent with :content_file and :content_cb set but without setting :read_size_hint: will there be a constant default value or could the chunk-size change?

share|improve this question
What happens when you read the source? It's there for you to see, and although I could answer this question be looking, I wouldn't want to deprive you of that fun. :) – brian d foy Apr 10 '12 at 0:04
I tried to read the size of the chunks and it seems to me that the first 4 chunks and possibly the last differ from the rest of chunks which are all equal. – sid_com Apr 10 '12 at 9:17
It differs from the sort of download - sometimes the chunks are all equal (excluding the last). – sid_com Apr 10 '12 at 9:39
It's normal for the last one to be smaller. Let's say you have to download a file of 18KB and the size of the chunk is 4KB. First 4 chunks will be equal, ant the last one will be 2KB: 18KB = 4 x 4KB + 2KB – Cornel Ghiban Apr 10 '12 at 13:41

1 Answer

up vote 1 down vote accepted

Looking in LWP::Protocol::http (LWP::Protocol version 6.00): the default chunk size is 4096 bytes.

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.