MOCKSTACKS
EN
Questions And Answers

More Tutorials









PHP Using Redis with PHP


Connecting to a Redis instance


Assuming a default server running on localhost with the default port, the command to connect to that Redis server would be:

$redis = new Redis();
$redis->connect('127.0.0.1', 6379);


Installing PHP Redis on Ubuntu


To install PHP on Ubuntu, first install the Redis server:

sudo apt install redis-server
then install the PHP module:
sudo apt install php-redis
And restart the Apache server:
sudo service apache2 restart

Executing Redis commands in PHP


The Redis PHP module gives access to the same commands as the Redis CLI client so it is quite straightforward to use.
The syntax is as follow:
// Creates two new keys:
  $redis->set('mykey-1', 123);
  $redis->set('mykey-2', 'abcd');
// Gets one key (prints '123')
  var_dump($redis->get('mykey-1'));
// Gets all keys starting with 'my-key-'
// (prints '123', 'abcd')
  var_dump($redis->keys('mykey-*'));


Conclusion

In this page (written and validated by ) you learned about PHP Using Redis with PHP . What's Next? If you are interested in completing PHP tutorial, your next topic will be learning about: PHP Sending Email.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.