All Questions
Tagged with multithreading linq
6 questions
2
votes
1
answer
370
views
How do I make multithreading in sending large file from FTP to Azure large files faster
Currently, I have a code which downloads a file from FTP to local hard disk. It then uploads a file in chunks to Azure. Finally, it deletes the file from local and ftp. This code is very slow though. ...
5
votes
2
answers
185
views
PLINQ code analysis in terms of efficiency of cryptographic hashes generation
I have the following code that I wrote in order to find the correct password by generating hashes out of all possible combinations and comparing each of them with the target. I'm trying to make ...
10
votes
2
answers
2k
views
Get result from UI thread to non-UI thread when using await Task.Run
I have an application where I use Task to run an operation. During the operation, there can be a problem which will need some user interaction (continue or not). I ...
1
vote
1
answer
140
views
Optimizing my program by accessing data locally instead of a remote database
I have a database with 4 tables filled with millions of rows. I have my program run on several computers computing data and then returning it to the database. The huge bottleneck in my program design ...
1
vote
1
answer
1k
views
Optimize Implementation - Wait for all threads using LINQ
In my program I read several information's about the system. I read each categories like CPU, memory, services, software and so on with a own thread. The main program have to wait for the longest ...
3
votes
2
answers
569
views
Composable Locks using LINQ. Can anyone see any problem with this ?
I was playing around with LINQ and I came up with the following idea for composing locks taking advantage of C# Monadic syntax. It seems too simple, so I thought let me post it on StackExchange and ...