Hi All,
I have found relational database options, but I want to see if there are any faster non-relational databases that could do better.
- I am storing up to 32 GB of these records which contain 3 ints, a byte[8] array (or binary(8)), and a double.
- I will RARELY RARELY query the database, but I need to make sure that if I do read from the database it won't take forever. Are there non-relational databases that support indexing? Queries will be ranged based (give me records where 0 < x < 100), so I am not looking for a hash indexing scheme.
- Since I insert large volumes of data at very high rates, insert time MUST be fast
- I only need one connection
- Does not need to support ACID properties
- Must work on both linux and windows
- Bonus points for working on JAVA or using JDBC.
Please recommend a database for me or make some suggestions
Thanks in advance, jbu
By the way, would an XML solution be ok? Does that support fast lookups?