I'm looking for the best way to store and retrieve huge amounts of numerical data.
The project I'm working on right now requires some kind of data-base-esque storing possibility, but when it comes to data-bases I'm a complete Noob.
At the moment it's only meant for data I provide, but in the future I want it to also be able to store user-generated data.
In effect it will be just one long string of numbers which are meant as x or y-coordinates. In the project I've already seperated the x from the y to make it easier to adjust.
I've read about hash-tables, arrays, Json (if that's what it's called) and tried the csv-plugin (before I found out it wasn't meant for numerical data). I'm just not sure which road to travel.
Right now I'm using seperate event-sheets for every string of data, but there has to be a better way.
If anyone could point me in the right direction I'll be very grateful. I'm not scared of learning, but sometimes I get a bit overwhelmed by the possibilities of C2 and can't figure out which road will get me to my destination.