Gustavo Rubio

977
Reputation
131 views

Registered User

Name Gustavo Rubio
Member for 1 year
Seen Nov 18 at 23:12
Website
Location MX
Age 24
Software developer based in Tijuana Mexico. Working mainly with .Net technologies and a Linux/Open Source background.
Sep
18
comment Reading same file from multiple threads in C#
Ok so I finally ended using one single thread to read the big file and creating as much files as threads the user configured so if the user set 4 threads I divide this big file in 4 different files. As soon as the thread finishes I create 4 threads and each one reads a different file and process each record. I haven't benchmarked this but I will and let you know. Thanks all for the responses.
Sep
18
awarded  Yearling
Sep
16
comment Reading same file from multiple threads in C#
Actually the processing of the data is what takes the most. Indeed, what I'm doing right now is that the main thread reads the file line by line and as each line is consumed a new thread is created passing that line to the thread so it can process that information. As soon as a thread is done i fire up an event that tells me that thread has finished so I can create a new one so I dont create more than those the user pointed (num of threads is configurable)
Sep
16
asked Reading same file from multiple threads in C#
Aug
18
awarded  Notable Question
Aug
14
comment Do enums have a limit of members in C#?
Well of course I will not use the 2^32 size limit yet I need a lot of "storage". We are developing an application that is insurance-related so there are a lot of variables that need to be there in order to do the rating to get a premium and as you can imagine these are a lot (probably 600 to 1,000)
Aug
14
comment Do enums have a limit of members in C#?
Thank you, I did not know that you could declare the underlying type of an enum.
Aug
14
asked Do enums have a limit of members in C#?
Jun
3
asked Recover empty SVN DB file