Click here to Skip to main content
16,016,345 members
Home / Discussions / C#
   

C#

 
AnswerRe: Validating TextBox Pin
Anthony Mushrow8-Mar-07 6:15
professionalAnthony Mushrow8-Mar-07 6:15 
AnswerRe: Validating TextBox Pin
pbraun8-Mar-07 6:18
pbraun8-Mar-07 6:18 
GeneralRe: Validating TextBox Pin
Anthony Mushrow8-Mar-07 6:42
professionalAnthony Mushrow8-Mar-07 6:42 
AnswerRe: Validating TextBox Pin
Edmundisme8-Mar-07 6:59
Edmundisme8-Mar-07 6:59 
QuestionPerformance Question Pin
snorkie8-Mar-07 4:47
professionalsnorkie8-Mar-07 4:47 
AnswerRe: Performance Question Pin
kubben8-Mar-07 5:11
kubben8-Mar-07 5:11 
GeneralRe: Performance Question Pin
snorkie8-Mar-07 5:18
professionalsnorkie8-Mar-07 5:18 
GeneralRe: Performance Question Pin
kubben8-Mar-07 5:31
kubben8-Mar-07 5:31 
I guess I would need a little more info. I am guessing this is a windows app? windows service? When you ran it on your box where you running via Visual studio? Or were you just running it via launching the exe. If you were running via VS that would take more memory. I am guessing that is not the case.

As far as why it uses less memory on your prod server, it might be because you are running sql server on the prod server. Sql server will more or less say this memory is mine you can't touch it. So you app might have used up more memory if it was allowed to.

So the fact that your app uses so much memory leads me to think that it is probably using virtual memory for what ever process you are running. So that means it is using hard disk space to page its ram memory. If you are using so much memory you start paging to disk like that, it can slow down a process.

Perhaps you are serializing large objects. I have found it is better to write the large objects to disk and clean up the files later, instead of just using RAM memory.

If you are using serialization stuff in sql server that is also slow especially the larger the serialize objects get.

Really it is hard to guess past that with out knowing more details of what you app is doing.

So there are a couple of stabs in the dark. Hope it helps.

Ben
AnswerRe: Performance Question Pin
Luc Pattyn8-Mar-07 13:14
sitebuilderLuc Pattyn8-Mar-07 13:14 
QuestionCrystal Reports - Passing Parameters Pin
geekphreak8-Mar-07 4:41
geekphreak8-Mar-07 4:41 
QuestionPassing Variable to Program.cs Pin
electriac8-Mar-07 4:24
electriac8-Mar-07 4:24 
AnswerRe: Passing Variable to Program.cs Pin
Blue_Boy8-Mar-07 4:47
Blue_Boy8-Mar-07 4:47 
AnswerRe: Passing Variable to Program.cs Pin
pbraun8-Mar-07 6:15
pbraun8-Mar-07 6:15 
GeneralRe: Passing Variable to Program.cs Pin
electriac8-Mar-07 12:55
electriac8-Mar-07 12:55 
GeneralRe: Passing Variable to Program.cs Pin
pbraun8-Mar-07 13:09
pbraun8-Mar-07 13:09 
Questionlist of each layers for shapes Pin
chongkj8-Mar-07 4:01
chongkj8-Mar-07 4:01 
AnswerRe: list of each layers for shapes Pin
Edmundisme8-Mar-07 5:16
Edmundisme8-Mar-07 5:16 
QuestionCreating Clinet/Server protocol... Pin
yarns8-Mar-07 3:17
yarns8-Mar-07 3:17 
AnswerRe: Creating Clinet/Server protocol... Pin
Colin Angus Mackay8-Mar-07 3:24
Colin Angus Mackay8-Mar-07 3:24 
AnswerRe: Creating Clinet/Server protocol... Pin
Pete O'Hanlon8-Mar-07 3:25
mvePete O'Hanlon8-Mar-07 3:25 
GeneralRe: Creating Clinet/Server protocol... Pin
yarns8-Mar-07 3:43
yarns8-Mar-07 3:43 
AnswerUse Web Services Pin
Ennis Ray Lynch, Jr.8-Mar-07 4:00
Ennis Ray Lynch, Jr.8-Mar-07 4:00 
QuestionOOPs question: whats the difference between these ways of accessing methods !!! Pin
Arindam Tewary8-Mar-07 3:05
professionalArindam Tewary8-Mar-07 3:05 
AnswerRe: OOPs question: whats the difference between these ways of accessing methods !!! Pin
N a v a n e e t h8-Mar-07 3:12
N a v a n e e t h8-Mar-07 3:12 
GeneralRe: OOPs question: whats the difference between these ways of accessing methods !!! Pin
Arindam Tewary8-Mar-07 18:00
professionalArindam Tewary8-Mar-07 18:00 

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.