PHP Redis Veri Deploma, Veri Doğrulama
Redis: SET, GET, EXISTS
<?php
try{
$redis = new Redis();
$redis->connect('redis', 6379);
$redis->auth('mypassword');
$redis->set("user_name", "ali_veli"); //atama işlemi
if($redis->exists('user_name')){ //böyle bir değer varmı
echo "get key user_name to value :" .$redis->get("user_name"); //getir
}
}
catch (Exception $e){
echo $e->getMessage();
}
?>
PHP Redis Veri Deploma, Veri Doğrulama
4/
5
Oleh
Root