Install Redis under Ubuntu and use it in PHP

Source: Internet
Author: User
Tags install redis redis server

I. Installation of Redis

sudo Install Redis-server

Once the installation is complete, the Redis server will start automatically and we can check the following command line:

# redis-CLI127.0. 0.1:6379pingPONG

Description Service has started

Second, install the Php5-redis module

sudo Install Php5-redis

Restart Apache Service

sudo service apache2 restart

Then see if the Redis module is installed via Phpinfo

Third, test Redis in PHP

Write a simple PHP code test:

  1 <? PHP   2     $redisnew  Redis ();   3     $redis , connect (' 127.0.0.1 ', 6379);   4     $redis set (' Test ', "Hello World");   5     echo$redis , get (' Test ');   6?>

Operation Result:

# php-f redis.php Hello world

At this point all installation is complete.

Install Redis under Ubuntu and use it in PHP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.