نصب #redis در #ubuntu 20.04
https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-20-04
  
  https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-20-04
Digitalocean
  
  How To Install and Secure Redis on Ubuntu | DigitalOcean
  Redis is an in-memory key-value store known for its flexibility, performance, and wide language support. This tutorial demonstrates how to install and config…
  راه اندازی #redis در #php
https://github.com/phpredis/phpredis/blob/develop/INSTALL.markdown
بعد به فایل php.ini رفته و این خط رو در اکستنشن ها اضافه می کنید
  https://github.com/phpredis/phpredis/blob/develop/INSTALL.markdown
بعد به فایل php.ini رفته و این خط رو در اکستنشن ها اضافه می کنید
extension=redis.so
راه اندازی #redis در #lumen
https://stackoverflow.com/questions/59432814/class-redis-not-found-in-lumen
  
  https://stackoverflow.com/questions/59432814/class-redis-not-found-in-lumen
Stack Overflow
  
  Class 'Redis' not found in Lumen
  Lumen Version: 6.0
PHP Version: 7.2
Database Driver & Version: MySql 5.7, Redis
Code
use Illuminate\Support\Facades\Redis;
Redis::set($key, $data, 'EX', $expiry);
in app.php
$app->withF...
  PHP Version: 7.2
Database Driver & Version: MySql 5.7, Redis
Code
use Illuminate\Support\Facades\Redis;
Redis::set($key, $data, 'EX', $expiry);
in app.php
$app->withF...
#redis
آموزش کامل ردیس
https://t.me/c/1500601733/2
https://t.me/c/1500601733/3
https://t.me/c/1500601733/4
راه اندازی Redis در lumen
https://t.me/c/1500601733/5
استفاده از redis در پروژههای composer
https://t.me/c/1500601733/12
  آموزش کامل ردیس
https://t.me/c/1500601733/2
https://t.me/c/1500601733/3
https://t.me/c/1500601733/4
راه اندازی Redis در lumen
https://t.me/c/1500601733/5
استفاده از redis در پروژههای composer
https://t.me/c/1500601733/12
فعال سازی #soap در #php
قبل از هر اقدامی باید soap را نصب کنید:
  
  قبل از هر اقدامی باید soap را نصب کنید:
sudo apt install php-soaphttps://stackoverflow.com/questions/11391442/fatal-error-class-soapclient-not-found
Stack Overflow
  
  Fatal error: Class 'SoapClient' not found
  I'm trying a simple web service example and I get this error even though I uncommented extension=php_soap.dll in the php.ini file:
Fatal error: Class 'SoapClient' not found in C:\Program Files (x...
  Fatal error: Class 'SoapClient' not found in C:\Program Files (x...
چرک نویس برنامه نویس pinned «لیست #هشتگ ها #php #laravel #redis  آموزش کامل ردیس  #lumen آموزش راه اندازی یک http proxy #proxy»
  #redis 
نصب و استفاده از Redis در پروژه compser
https://github.com/predis/predis
با دستور زیر می تونید توی کامپوزر ردیس رو برای خودتون نصب کنید:
  
  نصب و استفاده از Redis در پروژه compser
https://github.com/predis/predis
با دستور زیر می تونید توی کامپوزر ردیس رو برای خودتون نصب کنید:
composer require predis/predisدر هر کدی که میخواهید استفاده کنید کافیه از دستورهای زیر استفاده کنید:
use Predis\Client as Redis;
// Parameters passed using a named array:
$client = new Redis([
    'scheme' => 'tcp',
    'host'   => '10.0.0.1',
    'port'   => 6379,
]);
//or
// Same set of parameters, passed using an URI string:
$client = new Predis\Client('tcp://10.0.0.1:6379');
$client = new Redis();
$client->set('foo', 'bar');
$cilent->expire('foo',1);
$value = $client->get('foo');GitHub
  
  GitHub - predis/predis: A flexible and feature-complete Redis/Valkey client for PHP.
  A flexible and feature-complete Redis/Valkey client for PHP. - predis/predis
  https://www.cyberciti.biz/faq/debian-10-set-up-openvpn-server-in-5-minutes/
کافیگ #OVPN اوپن وی پی ان openvpn پراکسی روی سرور دبیان
  
  کافیگ #OVPN اوپن وی پی ان openvpn پراکسی روی سرور دبیان
nixCraft
  
  Debian 10 Set Up OpenVPN Server In 5 Minutes
  A step-by-step guide that explains how to set up OpenVPN server on Debian Linux 10 using simple but secure bash shell script