I have inserted one ArrayList
into a Redis database using Java.
hashList.leftPushAll("myKey", fetchedCatalogs);
Here, myKey
is the key and fetchedCatalogs
is a ArrayList
which contain some data.
Now I want to fetch this list in Java but I am not able to do it. Please help.