What is the best way to store Time Series in MySQL?

I want to store a large number of Time Series (time vs value) data points. I would prefer using MySQL for the same. Right now I am planning to store the time series as a Binary Blob in MySQL. Is this the best way, what would be the best approach.

This question and answers originated from www.stackoverflow.com
Question by (9/27/2010 1:15:07 PM)

Answer

You should store your values as whatever type they are (int, boolean, char) and your times as either date, or int containing the UNIX timestamp, whatever fits your application better.

Answer by

Find More Answers
Related Topics  mysql  time-series
Related Questions