Click here to Skip to main content
15,905,874 members
Home / Discussions / C#
   

C#

 
AnswerRe: Parse 17,000 text files and insert into database Pin
Jimmanuel23-Nov-16 10:48
Jimmanuel23-Nov-16 10:48 
QuestionDevelop Web Service REST Pin
Member 1283622014-Nov-16 3:37
Member 1283622014-Nov-16 3:37 
QuestionTextbox updation Pin
Avinash.Banda14-Nov-16 0:24
Avinash.Banda14-Nov-16 0:24 
AnswerRe: Textbox updation Pin
OriginalGriff14-Nov-16 0:31
mveOriginalGriff14-Nov-16 0:31 
GeneralRe: Textbox updation Pin
Avinash.Banda14-Nov-16 0:36
Avinash.Banda14-Nov-16 0:36 
GeneralRe: Textbox updation Pin
OriginalGriff14-Nov-16 0:39
mveOriginalGriff14-Nov-16 0:39 
GeneralRe: Textbox updation Pin
Avinash.Banda14-Nov-16 0:43
Avinash.Banda14-Nov-16 0:43 
GeneralRe: Textbox updation Pin
OriginalGriff14-Nov-16 0:45
mveOriginalGriff14-Nov-16 0:45 
GeneralRe: Textbox updation Pin
Avinash.Banda14-Nov-16 0:52
Avinash.Banda14-Nov-16 0:52 
GeneralRe: Textbox updation Pin
OriginalGriff14-Nov-16 1:03
mveOriginalGriff14-Nov-16 1:03 
GeneralRe: Textbox updation Pin
Avinash.Banda14-Nov-16 1:04
Avinash.Banda14-Nov-16 1:04 
QuestionCan I send Push Notifications to mobile phones from Windows Forms Application? Pin
Onur ERYILMAZ13-Nov-16 23:58
Onur ERYILMAZ13-Nov-16 23:58 
AnswerRe: Can I send Push Notifications to mobile phones from Windows Forms Application? Pin
Eddy Vluggen14-Nov-16 3:51
professionalEddy Vluggen14-Nov-16 3:51 
QuestionFile Transfer Queue Architecture Pin
Kevin Marois10-Nov-16 6:16
professionalKevin Marois10-Nov-16 6:16 
QuestionRe: File Transfer Queue Architecture Pin
Gerry Schmitz10-Nov-16 6:41
mveGerry Schmitz10-Nov-16 6:41 
AnswerRe: File Transfer Queue Architecture Pin
Kevin Marois10-Nov-16 6:42
professionalKevin Marois10-Nov-16 6:42 
GeneralRe: File Transfer Queue Architecture Pin
Gerry Schmitz10-Nov-16 7:04
mveGerry Schmitz10-Nov-16 7:04 
GeneralRe: File Transfer Queue Architecture Pin
Kevin Marois10-Nov-16 7:22
professionalKevin Marois10-Nov-16 7:22 
GeneralRe: File Transfer Queue Architecture Pin
Gerry Schmitz10-Nov-16 7:33
mveGerry Schmitz10-Nov-16 7:33 
GeneralRe: File Transfer Queue Architecture Pin
Kevin Marois10-Nov-16 7:38
professionalKevin Marois10-Nov-16 7:38 
GeneralRe: File Transfer Queue Architecture Pin
Gerry Schmitz10-Nov-16 8:08
mveGerry Schmitz10-Nov-16 8:08 
GeneralRe: File Transfer Queue Architecture Pin
Dave Kreskowiak10-Nov-16 11:02
mveDave Kreskowiak10-Nov-16 11:02 
Not necessarily.

Sending 3 files at the same time is not any faster than sending the same 3 files one at a time. The network pipe can still only send one bit at a time, not 3. The benefit you get from sending multiple files at the same time is limited to the amount of time it takes to send and receive FTP protocol data for each file, not the file data you're sending. This including starting the FTP session, authentication, navigation, file transfer commands, file framing data, acknowledgments, ...

Since, in both test cases, you're sending the exact same file data, the timings of sending the actual file data cancel each other out. It may indeed be faster, but you're not going to see a result of sending 3 files at the same time takes 33% of the time of sending one at a time.
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

GeneralRe: File Transfer Queue Architecture Pin
Kevin Marois10-Nov-16 11:06
professionalKevin Marois10-Nov-16 11:06 
GeneralRe: File Transfer Queue Architecture Pin
Dave Kreskowiak10-Nov-16 15:30
mveDave Kreskowiak10-Nov-16 15:30 
GeneralRe: File Transfer Queue Architecture Pin
Kevin Marois11-Nov-16 5:42
professionalKevin Marois11-Nov-16 5:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.