'How should I design my application to handle large amounts of data?
I am building an application for building sports betting models. Basically users can create their own criteria and backtest their models across historical data. There are over 10 years worth of data totaling about 40MB.
I want to perform the backtesting on the client side, as it would bog down the server as the application scales its users. So I want to provide the bulk data to the client, and perform the analysis on their machine. Is there any good way to do this using a web application (currently using react and mongodb), or is this better as a desktop application where I can store the data locally?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
