Click here to Skip to main content
15,890,506 members
Articles / Programming Languages / C#

A Data Processing Design Pattern for Intermittent Input Data

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
30 Jun 2020CPOL4 min read 12.8K   128   9  
Data Processing with RAM and CPU optimization
For processing continuous data input, RAM and CPU utilization has to be optimized. If there are multiple threads collecting and submitting data for processing, then you have two options from there. One is to create equal amount of input threads for processing data or store the input data in memory and process it one by one. Creating large number of threads chokes up the CPU and holding everything in memory exhausts the RAM. We need a balanced solution.

Views

Daily Counts

Downloads

Weekly Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions