I have java application that process such kind of data:
class MyData
{
Date date;
double one;
double two;
String comment;
}
All data are stored in csv format on hard disk, maximum size of such data sequence is ~ 150 mb, and for this moment I just load it fully to memory and work with it.
Now I have the task to increase maximum data sequence for hundreds of gigabyte. guess I need to use DB, but I did not work with them before.
My questions:
- Which DB better to choose for my reasons(there will be only 1 table with data as abowe) ?
- Which library better to use to connect Java <-> DB
- I guess there will be used something like cursor?!? if so, is there any cursor realization with good record caching for fast access?
Any other tips&tricks about java <-> DB are welcome!