I am using the javascript plugin heatmap.js (http://www.patrick-wied.at/static/heatmapjs/) to track mouse movements and clicks. This plugin generates huge amounts of data
"data":[{"x":"17","y":"-8","radius":8,"value":1},
{"x":"23","y":"-47","radius":8,"value":1},...
]
approximately 10000 points /20 secs of activity.
What is the most efficient way to store this data in SQL server.
Currently i am using varchar(max) to store every 10000 points. But wanted to see if there is a more efficient way to compress and store this info.