Redis
 sql >> Teknologi Basis Data >  >> NoSQL >> Redis

Tidak dapat menghubungkan Redis Cluster di Elasticache ke PHP menggunakan perpustakaan phpredis

  1. Gunakan perpustakaan Predis.

  2. Hubungkan ke Redis ElastiCache Endpoint dalam mode Cluster menggunakan Predis, lihat contoh di bawah.

    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. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Apakah perpustakaan Redis yang disewa membuat utasnya sendiri untuk panggilan balik asinkron?

  2. kirim pesan hilir ke google ccs dengan node js

  3. Bagaimana cara menerapkan pemicu untuk redis datastore?

  4. Menemukan kunci menggunakan wildcard

  5. Koneksi redis hilang dari acara dekat