Click here to Skip to main content
15,879,096 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
hello friends,

I have developed one application. And I want my application to run fast/ good in low hardware configuration. how do i make it work?

it takes so much memory and time start and to run. i want it to run in low memory (takes about 40,000K)

any help is appreciated...


Thanks in advance.
Posted
Updated 4-Feb-12 2:11am
v3
Comments
Jαved 4-Feb-12 8:41am    
Not solved yet.

You can't. You have to consider memory concerns in early stages of development. You may need your whole application recoded to get it run smoothly.
http://madgeek.com/Articles/Leaks/Leaks.en.html[^]
 
Share this answer
 
The perception of speed is sometime misleading.
Are you sure the problem is memory.
I have seen people spending a lot of time and effort speeding up part of the program which were not the really problematic.
You have to concentrate on the bottle necks.
In term of speed accessing memory is 1ms, accessing a file is 10ms, accessing the internet is 1 second.
Using less memory is an option.
Buying more memory is another. If you have a little bit more memory your hard disk swap less, and your pc last longer. This might be a time saver as much as a money saver.

If you're sure the memory is the problem then you can make your program use less.
Reference only the dll's you need. Use less libraries. Don't hold to much data in memory.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900