Posted on: 6/12/2014 12:58:34 AM | Views : 434

hello,
i am using logfiles to log all kind of usage.
how many lines of ~3000px with (dont know characters) can an txt document handle before the system will become unresponsive? (i need to seperate the files on a max count of lines)
the code to write the log is using an smart callable classfile, but the action itselfs comes down to :
dim currentlog = my.computer.filesystem.readalltext(blablabla...
if currentlog = "" then //Check if first line is written
my.computer.filesystem.writealltext(blablabla...., "this happend", false) //write as first line
else
my.computer.filesystem.writealltext(blablabla...., currentlog & vbnewline & "this happend", false) //Write on new line
end if

Reading the logfiles is done by really good highperformance systems. i only need to know, at which point the above part of code will hang/slow the website down.

Go to the complete details ...