Redis
 sql >> डेटाबेस >  >> NoSQL >> Redis

नोड.जेएस का उपयोग करके इलास्टी कैश क्लस्टर से कैसे जुड़ें?

<ब्लॉकक्वॉट>

भावी पाठकों के लिए कोड साझा करना:

var RedisClustr = require('redis-clustr');
var RedisClient = require('redis');
var config = require("./config.json");

var redis = new RedisClustr({
    servers: [
        {
            host: config.redisClusterHost,
            port: config.redisClusterPort
        }
    ],
    createClient: function (port, host) {
        // this is the default behaviour
        return RedisClient.createClient(port, host);
    }
});

//connect to redis
redis.on("connect", function () {
  console.log("connected");
});

//check the functioning
redis.set("framework", "AngularJS", function (err, reply) {
  console.log("redis.set " , reply);
});

redis.get("framework", function (err, reply) {
  console.log("redis.get ", reply);
});



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. अपने स्वयं के एडब्ल्यूएस खाते पर रेडिस ™ के लिए स्केलग्रिड होस्टिंग

  2. क्या हायरडिस रेडिस लाइब्रेरी एसिंक्स कॉलबैक के लिए अपना खुद का थ्रेड बनाती है

  3. फ़ाइल या असेंबली लोड नहीं कर सका System.Runtime.CompilerServices.Unsafe

  4. क्या रेडिस हैश के लिए एमजीईटी एनालॉग है?

  5. स्प्रिंग डेटा रेडिस डिफ़ॉल्ट सीरिएलाइज़र को ओवरराइड करता है