C
Curious
I have a C#.NET project in which I'll need to load up information
about 4000 securities into memory.
Each security has 21 days of daily data in memory.
Each daily data contains 20 items in memory such as open price (double
type), close price (double type), etc.
Therefore, I'm looking at 4000 * 21 * 20 = 1,680,000 memory usage. Can
C#.NET environment handle this much memory (without giving a
insufficient memory exception)?
about 4000 securities into memory.
Each security has 21 days of daily data in memory.
Each daily data contains 20 items in memory such as open price (double
type), close price (double type), etc.
Therefore, I'm looking at 4000 * 21 * 20 = 1,680,000 memory usage. Can
C#.NET environment handle this much memory (without giving a
insufficient memory exception)?