I am coding a data intensive application in C #. Currently, the application is loading loads and timeseries loads from a remote sql server, doing a lot of calculations to create other time series, and I would like to quickly access these time servers.
Each time it has a unique identifier and should map from DateTime to anything (mostly floating, but sometimes strings, stringarray, etc.).
Do you know any library that I could use for this, giving me:
- fast and parallel access to these time servers?
- access to the "tree" version of these time series, search for the last date, last previous date, etc.
I had a massive parallel cache like memcached, tokyo-tyrant or redis, but I would have to store some serialized version of each timeseries to solve my problem.
Greetings!
source
share