Click here to Skip to main content
15,891,657 members
Home / Discussions / C#
   

C#

 
QuestionRe: how to clear memory Pin
Eddy Vluggen31-Jul-12 3:18
professionalEddy Vluggen31-Jul-12 3:18 
AnswerRe: how to clear memory Pin
Pete O'Hanlon31-Jul-12 3:27
mvePete O'Hanlon31-Jul-12 3:27 
GeneralRe: how to clear memory Pin
Eddy Vluggen31-Jul-12 5:05
professionalEddy Vluggen31-Jul-12 5:05 
GeneralRe: how to clear memory Pin
Ronenb31-Jul-12 3:21
Ronenb31-Jul-12 3:21 
AnswerRe: how to clear memory Pin
Ed Hill _5_31-Jul-12 3:20
Ed Hill _5_31-Jul-12 3:20 
GeneralRe: how to clear memory Pin
Ronenb31-Jul-12 3:32
Ronenb31-Jul-12 3:32 
GeneralRe: how to clear memory Pin
Ed Hill _5_31-Jul-12 3:40
Ed Hill _5_31-Jul-12 3:40 
GeneralRe: how to clear memory Pin
Dave Kreskowiak31-Jul-12 4:29
mveDave Kreskowiak31-Jul-12 4:29 
No, it's not. The way you were reading the file (line by line) and storing it in memory is no less expensive than processing that giant log one line at a time.

You're trying to read 700MB of data into memory and running into OutOfMemory problems. How efficient do you think that is?? By reading everything into memory all at once your solution only works on limited log sizes, dependant on system memory.

If you process every line, one at a time, without reading the entire file into memory, you can process log files of ANY size, up to the file size limit of the operating system and do it without requiring the machine to have terabytes of memory.

GeneralRe: how to clear memory Pin
Ronenb1-Aug-12 0:08
Ronenb1-Aug-12 0:08 
AnswerRe: how to clear memory Pin
BobJanova31-Jul-12 0:31
BobJanova31-Jul-12 0:31 
AnswerRe: how to clear memory Pin
Ennis Ray Lynch, Jr.31-Jul-12 4:52
Ennis Ray Lynch, Jr.31-Jul-12 4:52 
AnswerRe: how to clear memory Pin
PIEBALDconsult31-Jul-12 6:09
mvePIEBALDconsult31-Jul-12 6:09 
AnswerRe: how to clear memory Pin
RobCroll31-Jul-12 14:31
RobCroll31-Jul-12 14:31 
QuestionHelp needed in C# Pin
bbnmmn30-Jul-12 21:10
bbnmmn30-Jul-12 21:10 
AnswerRe: Help needed in C# Pin
Wayne Gaylard30-Jul-12 21:23
professionalWayne Gaylard30-Jul-12 21:23 
QuestionRe: Help needed in C# Pin
Ed Hill _5_30-Jul-12 22:57
Ed Hill _5_30-Jul-12 22:57 
GeneralResponse.Write doenst work correctly ...? Pin
jojoba201130-Jul-12 20:08
jojoba201130-Jul-12 20:08 
GeneralRe: Response.Write doenst work correctly ...? Pin
Bernhard Hiller30-Jul-12 20:47
Bernhard Hiller30-Jul-12 20:47 
AnswerRe: Response.Write doenst work correctly ...? Pin
jojoba201130-Jul-12 21:31
jojoba201130-Jul-12 21:31 
GeneralRe: Response.Write doenst work correctly ...? Pin
Dave Kreskowiak31-Jul-12 2:29
mveDave Kreskowiak31-Jul-12 2:29 
QuestionHai sir Pin
Mars selva30-Jul-12 20:00
Mars selva30-Jul-12 20:00 
AnswerRe: Hai sir Pin
Abhinav S30-Jul-12 20:08
Abhinav S30-Jul-12 20:08 
QuestionQuick Data Layer Design Question Pin
Kevin Marois30-Jul-12 8:54
professionalKevin Marois30-Jul-12 8:54 
AnswerRe: Quick Data Layer Design Question Pin
Pete O'Hanlon30-Jul-12 10:06
mvePete O'Hanlon30-Jul-12 10:06 
GeneralRe: Quick Data Layer Design Question Pin
Kevin Marois30-Jul-12 10:25
professionalKevin Marois30-Jul-12 10:25 

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.