sql >> Database teknologi >  >> NoSQL >> Redis

Kan ikke forbinde Redis Cluster i Elasticache til PHP ved hjælp af phpredis-biblioteket

  1. Brug Predis bibliotek.

  2. Forbind til Redis ElastiCache Endpoint i klyngetilstand ved hjælp af Predis, se nedenstående eksempel.

    try{ 
        // Put your AWS ElastiCache Configuration Endpoint here.
        $servers  = ['aliceredis.8xyzwu.clustercfg.euw2.cache.amazonaws.com:6379'];
        // Tell client to use 'cluster' mode.
        $options  = ['cluster' => 'redis'];
        // Create your redis client
        $redis = new Predis\Client($servers, $options); 
    
        // Do something you want:
        // Set the expiration for 7 seconds
        $redis->set("tm", "I have data for 7s.");
        $redis->expire("tm", 7);
        $ttl = $redis->ttl("tm"); // will be 7 seconds
    
        // Print out value of the key 'tm'
        var_dump(array("msg"=>"Successfully connected to Redis Cluster.", "val"=>$redis->get("tm"))) ;
    
    }
    catch(Exception $ex){ 
        echo ('Error: ' . $ex->getMessage() ); // output error message.
    }
    



  1. MongoError:tilslut ECONNREFUSED 127.0.0.1:27017

  2. Indsættelse af en liste i en anden liste i Redis

  3. MongoDB $stdDevPop

  4. Fjernforbindelse til MongoDB http-grænseflade på EC2-server