I have a WCF service which got methods for users to upload documents into the Document Management system location after doing some other tasks.
This is widely used and atleast 1000 documents are uploaded using the above mentioned service everyday.
The method in the service accepts byte[] and off late we noticed that, the physical memory on the server is reaching upto 90% some times and CPU usage is maxing out.
Do you think it may be due to the reason why byte[] is used by the method?
How can I force Garbage Collection or free up the memory?
Please advice.