I've huge csv file database of ~5M rows having below fields
start_ip,end_ip,country,city,lat,long
I am storing these in LevelDB using start_ip as the key and rest as the value.
How can I retrieve records for keys where
( ip_key > start_ip and ip_key < end_ip )
Any alternative solution.
I assume that your keys are the hash values of the IP and the hashes are 64-bit `unsigned' integers, but if that's not the case then just modify the code below to account for the proper keys.
Note that
_options
are the sameleveldb::Options
with which you opened the database instance. You want to use the comparator specified in the options so that the order in which you read the records is the same as the order in the database.If you're not using boost or tr1, then you can either use something else similar to the
shared_ptr
or just delete theleveldb::Iterator
by yourself. If you don't delete the iterator, then you'll leak memory and get asserts in debug mode.