: Moderated discussion of advanced .NET topics.
[mailto:[EMAIL PROTECTED] On Behalf Of Halász Imre
Levente
Sent: Monday, December 01, 2003 4:38 AM
To: [EMAIL PROTECTED]
Subject: Re: [ADVANCED-DOTNET] Transfering large data via remoting
Thank you for the advise, I will try the socket thing.
-Original
settings; set the MTU, MSS and windows sizes to reduce acks
and get better performance from TCP.
A
Btw the design pattern to follow for getting the necessary data immediately
and getting the rest later on is called 'lazy load'
> -Original Message-----
> From: Moderated discussi
topics. [mailto:ADVANCED-
> [EMAIL PROTECTED] On Behalf Of Shawn A. Van Ness
> Sent: 28 November 2003 20:56
> To: [EMAIL PROTECTED]
> Subject: Re: [ADVANCED-DOTNET] Transfering large data via remoting
>
> It's interesting to consider why fragmenting would make your system
f
ynchronous data transfer using sockets. In your kind of scenario, I
feel it is worth a serious try.
Rathna Raj
-Original Message-
From: Shawn A. Van Ness [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2003 2:26 AM
To: [EMAIL PROTECTED]
Subject: Re: [ADVANCED-DOTNET] Transfering
transfer using sockets. In your kind of scenario, I
feel it is worth a serious try.
Rathna Raj
-Original Message-
From: Shawn A. Van Ness [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2003 2:26 AM
To: [EMAIL PROTECTED]
Subject: Re: [ADVANCED-DOTNET] Transfering large data via
On Fri, 28 Nov 2003 12:55:33 -0800, Shawn A. Van Ness <[EMAIL PROTECTED]>
wrote:
>...At the end of the day,
>the same amount of bits are transmitted in either case (actually,
>fragmenting will have to transfer more).
Just wanna add that it is not all about amount of bits but also about
response-
It's interesting to consider why fragmenting would make your system faster
-- I haven't tried it; I'll take your word for it. At the end of the day,
the same amount of bits are transmitted in either case (actually,
fragmenting will have to transfer more). Could it be all the large-block
heap allo
Hi to all,
I'm new on this forum, i got your address from Ingo's site. My problem is
the following.
I read an articla written by Dmitry Belikov about transfering large data
using .NET remoting. He advised to fragment the data and send it in parts,
then reassamble it on the client side.
I made some