I am new to this REDIS database and I am trying to use Jedis (by popularity)... My requirement is to read a spreadsheet of data and load them on REDIS using Jedis (java client for redis).
I can read and get the spreadsheet data in java ( I can use jxl or some other libraries).
I can load the data as regular key values (individual cell contents)... I am not sure if this is the correct approach.
Or can I load the entire spreadsheet data into REDIS using Jedis? if yes, how? any pointers would be great!
Thanks.