Reputation: 11
I want to read a file with 600M records in C++, and perform aggregation based on given criteria for the fields (e.g. empl.loacation='FL' and empl.dept=3
).
Is using C++ a viable option? I can go the database route, but was wondering, given that my requirement is readonly - aggregation, can I just use C++?
I saw the boost multi index library. Is it more appropriate for this kind of operation than plain C++ or a DB?
Upvotes: 1
Views: 396
Reputation: 5658
To determine whether Boost.MultiIndex fits your bill, ask yourself the following two questions:
If the answer to both questions is yes, Boost.MultiIndex can help you.
Upvotes: 4