You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Redis DB
Hi, I am creating a recommendation engine which uses hadoop with redis caching.I am unable to read and write hdfs data to and from redis. Is there any way to connect hdfs to redis.Kindly help.Thanks in advance.
Jan-Erik Rediger
unread,
Mar 17, 2016, 2:25:53 PM3/17/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to redi...@googlegroups.com
Redis is a simple key-value datastore.
You can only access it through sending it commands.
It has no HDFS layer.
You probably need to write a small application that reads data from your
HDFS and sends it to Redis.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to redi...@googlegroups.com, Jan-Erik Rediger
Redis is NOT a simple key-value datastore.
Memcached is a simple key-value datastore. Key-value is the only data structure supported by memcached.
Redis is a simple data structure store. One of the several data structures it can store is key-value. Others are lists, hashes, unordered sets, geocoded sets, and scored sets.