I'm saving a JSON.stringified version of an object to a Redis List. I need to use lists because I'm using LPUSH / RPUSH and LTRIM.
The problem is that node_redis is saving a escaped version of my stringified object, so when I retrieve the list range I can't parse the whole list, I have to iterate trough the list and parse each of the items in the list.
Is there a way to parse the whole list when retrieving it without iterating the whole list?