On Monday 25 May 2009, guiodic wrote:
>
> Ron_1st wrote:
> >
> > No, this is not correct.
> >
> > My internet connection is 20Mbits (20/8 = 2500 KByte/second)
> > When I write 1Kb (8kbit) it goes with 20Mbs speed on the wire.
> >
> > Using packets of 1 KByte every second is a transfer rate (ban
Ron_1st wrote:
>
> No, this is not correct.
>
> My internet connection is 20Mbits (20/8 = 2500 KByte/second)
> When I write 1Kb (8kbit) it goes with 20Mbs speed on the wire.
>
> Using packets of 1 KByte every second is a transfer rate (bandidth)
> The average is then the wished 1 Kbits using
On Sunday 24 May 2009, guiodic wrote:
> I can measure the WRITE execution time.
> This would be usefus to get the real trasfer rate: If WRITE take a second,
> the transer rate is 1KB/s.
> Is it correct?
>
No, this is not correct.
My internet connection is 20Mbits (20/8 = 2500 KByte/second)
When
Ok, this is the test:
code:
tempo = Timer()
WRITE #LAST, b, Len(b)
WAIT pausa
tempo = Timer() - tempo ' tempo di esecuzione della WRITE in s
PRINT tempo
where: pausa= 1/5 s = 0.20 then max transer rate is 5 kb/s
wget wget --limit-rate=1k
This is (part of) the output:
0,2031
0,200164
guiodic wrote:
>
>
>
> guiodic wrote:
>>
>> This is the solution, I think.
>>
>
> Damn, It doesn't work.
>
> I have modified the code: I put print timer() before and after the WRITE:
>
> PRINT Timer()
> WRITE #LAST, b, Len(b)
> WAIT pausa
> PRINT Timer()
>
> with pause=0.5 (=2kb/s) an
guiodic wrote:
>
> This is the solution, I think.
>
Damn, It doesn't work.
I have modified the code: I put print timer() before and after the WRITE:
PRINT Timer()
WRITE #LAST, b, Len(b)
WAIT pausa
PRINT Timer()
with pause=0.5 (=2kb/s) and wget set for 1 kb/s
well, this is the output:
2
Benoît Minisini wrote:
>
>> Benoît Minisini wrote:
>> > But you can enhance your code by fixing your "WAIT pause" instruction.
>> >
>> > If WRITE blocks, then you must take its execution time into account,
>> and
>> > lower
>> > the pause accordingly.
>> >
>> > Regards,
>> >
>> > --
>> > Benoît
> Benoît Minisini wrote:
> > But you can enhance your code by fixing your "WAIT pause" instruction.
> >
> > If WRITE blocks, then you must take its execution time into account, and
> > lower
> > the pause accordingly.
> >
> > Regards,
> >
> > --
> > Benoît
>
> oh. yes!
> I can measure the W
Benoît Minisini wrote:
>
> But you can enhance your code by fixing your "WAIT pause" instruction.
>
> If WRITE blocks, then you must take its execution time into account, and
> lower
> the pause accordingly.
>
> Regards,
>
> --
> Benoît
>
>
oh. yes!
I can measure the WRITE exec
> Benoît Minisini wrote:
> > I'm afraid I won't be able to fix that for Gambas 2.x.
> >
> > Regards,
> >
> > --
> > Benoît
> >
> :(
>
> Well, thank you.
But you can enhance your code by fixing your "WAIT pause" instruction.
If WRITE blocks, then you must take its execution time into account, and
Benoît Minisini wrote:
>
> I'm afraid I won't be able to fix that for Gambas 2.x.
>
> Regards,
>
> --
> Benoît
>
>
>
:(
Well, thank you.
--
View this message in context:
http://www.nabble.com/server-socket-problem-tp23697722p23698223.html
Sent from the gambas-user mailing list archi
> Benoît Minisini wrote:
> > The WRITE instruction will block your program if the internal socket
> > buffer is
> > full because the reader is not fast enough to get it.
>
> Thank you Benoit.
> But, how can to workaround this?
You raise a point there. There is no code in the gb.net component to wa
Benoît Minisini wrote:
>
> The WRITE instruction will block your program if the internal socket
> buffer is
> full because the reader is not fast enough to get it.
>
Thank you Benoit.
But, how can to workaround this?
--
View this message in context:
http://www.nabble.com/server-socket-pr
> Hi to all!
>
> I have a problem with server socket.
>
> I made a little http server with Gambas. This server must send large
> file, so it read 1KB from the file, write it and wait. The wait is
> calculated to fit the max band chosed by the server administrator.
> So if the max band is 1KB/s the
Hi to all!
I have a problem with server socket.
I made a little http server with Gambas. This server must send large
file, so it read 1KB from the file, write it and wait. The wait is
calculated to fit the max band chosed by the server administrator.
So if the max band is 1KB/s the pause is 1 sec
15 matches
Mail list logo