Hi all,

I was testing out my application and realised that it uses around 6.0 MB of memory. Is this not a lot???

I could reduce the memory required, but this will only reduce the speed of the app.

e.g. my parser allocates a big chunk of memory, depending on file size, does all the parsing and then deletes the allocated memory.

To improve this, I can allocate memory to parse line by line, deleting each after completion, but this reduces speed!

Its a tough compromise.

What is the recommendation?

Thank you