Skip to content Skip to sidebar Skip to footer
Showing posts with the label Redis

Storing Redis Hget Values Into A Variable In Nodejs

const redis = require('redis'); var client = redis.createClient(); client.on('error… Read more Storing Redis Hget Values Into A Variable In Nodejs

How To Perform Persistence Store In Redis?

after shutting down the redis server, the values stored using set is destroyed, here i found the wa… Read more How To Perform Persistence Store In Redis?

Should I Create A New Redis Client For Each Connection?

I'm looking at this code snippet: var addSnippet = function( req, res ) { getPostParams( req,… Read more Should I Create A New Redis Client For Each Connection?

Javascript Design Patterns -- Dealing With Unwanted Asynchrony

I'm pretty new to event-based programming (using node.js). I believe that there's something… Read more Javascript Design Patterns -- Dealing With Unwanted Asynchrony

Node Redis Publisher Consuming Too Much Memory

I wrote a small redis publisher in node by using node_redis library. After the program is done publ… Read more Node Redis Publisher Consuming Too Much Memory