<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using Redis with Node.js</title>
	<atom:link href="http://www.hacksparrow.com/using-redis-with-node-js.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hacksparrow.com/using-redis-with-node-js.html</link>
	<description>Node.js and JavaScript Tutor</description>
	<lastBuildDate>Fri, 17 May 2013 20:48:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Luc Juggery</title>
		<link>http://www.hacksparrow.com/using-redis-with-node-js.html/comment-page-1#comment-444</link>
		<dc:creator>Luc Juggery</dc:creator>
		<pubDate>Wed, 01 Feb 2012 13:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.hacksparrow.com/using-redis-with-node-js.html#comment-444</guid>
		<description><![CDATA[Hello,

Also, db.multi can be very handy if you need to make several requests at the same time. It will then act as a transactional mode:

 db.multi([
      [&quot;set&quot;, &quot;status&quot;, &quot;good&quot;],
      [&quot;hmset&quot;, &quot;user&quot;, {name: &quot;Jonh&quot;, age: 30}],
    ]).exec(function (err, replies) {
      if(!err){
        ...
      } else {
        ...
      }
    });

Luc]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Also, db.multi can be very handy if you need to make several requests at the same time. It will then act as a transactional mode:</p>
<p> db.multi([<br />
      ["set", "status", "good"],<br />
      ["hmset", "user", {name: "Jonh", age: 30}],<br />
    ]).exec(function (err, replies) {<br />
      if(!err){<br />
        &#8230;<br />
      } else {<br />
        &#8230;<br />
      }<br />
    });</p>
<p>Luc</p>
]]></content:encoded>
	</item>
</channel>
</rss>
