Wow! So turns out it was a silly error on my part. I had tried the Error object previously, but it was while looking at a different part of the code... I was actually looking/changing the 'imagekit' case in the code and being stumped as to why I was still seeing the behavior as I explained. Anyhow, it is working as it should when passing in an Error object. Thanks for the extra insight!
How get the "score" value when I put an element in a sortedSet
-
For example suppose I put the element in a sorted set in this way:
db.sortedSetAdd(set, Date.now(), data.name, function(err) {
});Now I want to get for every element the value of "Date.now()". I see the API but I don't find the solution. Anyone can help me?