@pitaj It's an issue of preference I guess. I'd like to avoid grunt being a dev tool forcing me to deviate from my integrations needs. If grunt would support multiple instances, it would be great and I'd use it. Else I'd stick with the current big hammer method of always recompiling unconditionally and restarting nodebb afterwards. Accepting the additional penalty of nginx rev proxy streaming timeouts. Not elegant but it works.
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?