This article describes how to use Redis on the following hosting packages:
Redis is an open-source memory object caching system that web sites can use to help accelerate page load times. Redis caches in RAM frequently accessed data, such as the results of API calls, database calls, and more.
Redis can significantly help improve site performance.
Redis is installed and ready to use on managed VPS and managed Dedicated servers.
You can connect to Redis using the following parameters:
To verify Redis is running, type the following command:
systemctl status redis
You can also use the redis-cli program to connect to Redis directly.
For example, the following commands demonstrate how to use redis-cli to dump all of the cached key-value pairs, and then display rolling statistics for Redis:
redis-cli KEYS '*' redis-cli --stat
To clear the entire Redis cache at once, type the following command:
redis-cli FLUSHALL
There are numerous PHP libraries available for integration with Redis. The following procedure demonstrates how to use the Predis library to connect to Redis and store a key/value pair:
cd ~ composer require predis/predis
Using your preferred text editor, create a file named redis-test.php. Copy and then paste the following code into the redis-test.php file:
<?php require './vendor/predis/predis/autoload.php'; Predis\Autoloader::register(); $client = new Predis\Client(); $client->set('test', 'hello'); $value = $client->get('test'); print "test = " . $value . "\n"; ?>
Type the following command to run the script:
php redis-test.php
You should receive the following output:
test = hello
To confirm the key/value pair is stored in the Redis cache, type the following command:
redis-cli GET test
For more information about how to use PHP with Redis, please visit https://docs.redis.com/latest/rs/references/client_references/client_php.
To connect to Redis on a Turbo shared hosting account, use the following Unix socket path. Replace username with your own account username:
/home/username/.redis/redis.sock
To verify that the Redis socket is active for your account, type the following command. Replace username with your own account username:
ls -l /home/username/.redis/redis.sock
If you receive a No such file or directory error message, then the socket has not been activated for your account yet. To do this, type the following command:
touch ~/.redis.on
The server checks for this file every five minutes, and starts the Redis process for the account if it does not already exist. After five minutes, run the ls command above again, and you should see the redis.sock file in the directory listing.
Before you try to use Redis with PHP on your account, make sure the correct PHP extension is enabled. To do this, follow these steps:
The following PHP code demonstrates how to connect to Redis and store a key-value pair in the cache.
<?php
$redis = new Redis();
$redis->connect('/home/username/.redis/redis.sock');
$redis->set('test', 'hello');
$value = $redis->get('test');
print "test = " . $value . "\n";
?>
When you run this script, you should receive the following output:
test = hello
To confirm the key/value pair is stored in the Redis cache, type the following command:
redis-cli -s ~/.redis/redis.sock GET test
Note that you must explicitly provide the socket path to redis-cli, or the command will fail.
A frequent use for Redis is to help improve performance in a CMS (content management system) like WordPress or Drupal. Redis can also help accelerate performance in e-commerce applications like PrestaShop or Magento:
Subscribe to receive weekly cutting edge tips, strategies, and news you need to grow your web business.
No charge. Unsubscribe anytime.
Did you find this article helpful? Then you'll love our support. Experience the A2 Hosting difference today and get a pre-secured, pre-optimized website. Check out our web hosting plans today.
We use cookies to personalize the website for you and to analyze the use of our website. You consent to this by clicking on "I consent" or by continuing your use of this website. Further information about cookies can be found in our Privacy Policy.