Re: linux persistent c application with http protocol?
- From: "Francesco" <vigotti@xxxxxxxxx>
- Date: 28 Jan 2006 07:23:21 -0800
for an example i've done it with visual basic net..
Dim i As Integer
Dim a As Integer
For i = 0 To 290
For a = 0 To 30000
test_array(i) += 1
test_array(i) += 2
test_array(i) -= 3
test_array(i) += 1
Next
TextBox3.Text = test_array(i).ToString
TextBox3.Refresh()
Next
....................................................
this means that some operations...
####################
test_array(i) += 1
test_array(i) += 2
test_array(i) -= 3
test_array(i) += 1
####################
on the array... are done 30000*290 times = 8 700 000
in php this means that i have to open (and close) 8 700 000 times a php
script, than store the variables of the array somewhere (file or db),
open it , edit and close it 8 700 000 times..
would you like to know how much seconds take the vbnet program to do
this operation?
1 second! :) than save the array in the db the array, another 2
seconds...
.
- Follow-Ups:
- Re: linux persistent c application with http protocol?
- From: Ben Bacarisse
- Re: linux persistent c application with http protocol?
- References:
- linux persistent c application with http protocol?
- From: Francesco
- Re: linux persistent c application with http protocol?
- From: Logan Shaw
- Re: linux persistent c application with http protocol?
- From: Francesco
- Re: linux persistent c application with http protocol?
- From: Ben Bacarisse
- Re: linux persistent c application with http protocol?
- From: Francesco
- linux persistent c application with http protocol?
- Prev by Date: Re: linux persistent c application with http protocol?
- Next by Date: Re: Please use wxWidgets
- Previous by thread: Re: linux persistent c application with http protocol?
- Next by thread: Re: linux persistent c application with http protocol?
- Index(es):
Relevant Pages
|