Best Data Structure For Time Series Data

Posted by TriParkinson on Stack Overflow See other posts from Stack Overflow or by TriParkinson
Published on 2010-03-31T03:45:32Z Indexed on 2010/03/31 3:53 UTC
Read the original article Hit count: 446

Filed under:
|
|

Hi all,

I wonder if someone could take a minute out of their day to give their two cents on my problem.

I would like some suggestions on what would be the best data structure for representing, on disk, a large data set of time series data. The main priority is speed of insertion, with other priorities in decreasing order; speed of retrieval, size on disk, size in memory, speed of removal.

I have seen that B+ trees are often used in database because of their fast search times, but how about for fast insertion times? Is a linked list really the way to go?

Thanks in advance for your time,

Tri

© Stack Overflow or respective owner

Related posts about data

Related posts about structures