titanae

1,244
Reputation
60 views

Registered User

name titanae
member for 1 year
seen 14 hours ago
website
location Melbourne, Australia
age 37
Director Software Development at Autodesk, formerly Moldflow. Promote voting, if the question is worth answering vote it up! I always up vote the questions I answer.
Nov
16
awarded  Nice Question
Oct
27
awarded  Popular Question
Oct
24
awarded  Popular Question
Oct
19
awarded  Taxonomist
Aug
23
awarded  Yearling
Aug
22
comment Calling C# from native C++, without /clr or COM?
Good answer, embedding Mono on Windows not really what I was looking for also it all looks very manual. You would have to write a lot of boiler plate code to expose an full interface to a library, it looks time consuming and fragile, reminds me of JNI. I was wondering if there is some sort of automated way, like SWIG or just exposing a COM interface.
Aug
22
asked Calling C# from native C++, without /clr or COM?
Aug
16
accepted File IO slow or cached in a web service?
Aug
16
answered File IO slow or cached in a web service?
Aug
15
comment File IO slow or cached in a web service?
I am starting to think it might be GC working, since while the file is uploading multiple other clients are firing requests at the server which involve data extraction, I think I might need to use the "using" statement more liberally? I will find out next week.
Aug
15
comment File IO slow or cached in a web service?
Possibly, but the scenario is the client is uploading data that must be stored in a file, once complete the client will ask the server to act on the data, the server does this by launching an external process on the server to process the data in the file. I could thread the write to the file, but eventually the client will have to sync with the server, client completed upload, server acknowledge receipt of file, client instruct server to process the file, their may be some delay in the later part since the client could upload multiple files.
Aug
14
comment File IO slow or cached in a web service?
I think it might be VisualStudio, running the client in the debugger, and web service detached seems fast, running the opposite way round is slow i.e. debug web service, client detached! This makes sense sort of, VisualStudio trying to intercept everything...no convinced yet.
Aug
14
answered File IO slow or cached in a web service?
Aug
14
comment File IO slow or cached in a web service?
yes, aData is byte[], out side server fast with variable path name.
Aug
14
comment File IO slow or cached in a web service?
Simply put the following gets slower - Open file, seems not to matter how Seek end of file, either by open method or calling seek Write data to end of file Close file, here is where it progressively gets slower Yet the same code running out side the web service is blisteringly fast, I even moved the append to file code into a separate class library, it made no difference, i.e. fast outside the service, slow inside the service. Write files to same location/same disk, so it can't be fragmentation??
Aug
14
revised File IO slow or cached in a web service?
More info
Aug
14
comment File IO slow or cached in a web service?
I don't think so, to me it looks like the web server process is reading the entire file into cache when the file is closed.
Aug
14
comment File IO slow or cached in a web service?
Yes/No, because StreamWriter opens the file, it closes it, I tried explicitly calling close, and using FileStream to open the file, they have no effect, when the StreamWriter gets disposed is when I see the slow down, 10 ms first append, 20 ms next etc, when the file gets beyond 10Mb it gets really slow over 2 seconds.
Aug
14
revised File IO slow or cached in a web service?
Typos and additional information
Aug
14
revised File IO slow or cached in a web service?
added 750 characters in body
Aug
14
comment File IO slow or cached in a web service?
Is running from VisualStudio, ultimately it will be run from Cassini. I have tried locating the temp file in the system temp directory, and a folder under the root of the web service, the same slow down happens regardless, it looks like the web service is caching access to the file in case.
Aug
14
revised File IO slow or cached in a web service?
Typo's
Aug
14
asked File IO slow or cached in a web service?
Jul
14
accepted How to play a standard windows sound?