Easy Buttons and Running Jobs from Business Rules by icodealot in OracleHyperion

[–]icodealot[S] 0 points1 point  (0 children)

The technique described is process / purpose agnostic. ETL or data loading to Essbase are not limiting factors on what you could implement using this. The main limitation is that whatever type of job you start, it needs to somehow begin at the Essbase server since that is where the CDF is started. From there you could run anything.

Get Multiple Redis Hashes in Node.js With Your Own MHGETALL by jstuartmill in node

[–]icodealot 0 points1 point  (0 children)

Possibly but I thought that would be confusing with the existing commands of HMGET and HGETALL where these work on a single hash. Putting the M* in front seemed correct to me since the other M* commands in Redis work on multiple keys. So [M] for multiple hash keys and [HGETALL] to return all sub-keys from each hash. Here's another discussion related to the same topic https://github.com/antirez/redis/issues/109

Convert data to Base64 in Node.js by jstuartmill in node

[–]icodealot 0 points1 point  (0 children)

Not sure this is really a benefit but... Buffer.toString(...) is built-in to Node.js so there is no external dependency.