Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning PHP 7 High Performance

You're reading from  Learning PHP 7 High Performance

Product type Book
Published in Apr 2016
Publisher Packt
ISBN-13 9781785882265
Pages 202 pages
Edition 1st Edition
Languages

Table of Contents (17) Chapters

Redis – the key-value cache store


Redis is an open source, in-memory key-value data store that is widely used for database caching. According to the Redis website (www.Redis.io), Redis supports data structures such as strings, hashes, lists, sets, and sorted lists. Also, Redis supports replication and transactions.

Note

Redis installation instructions can be found at http://redis.io/topics/quickstart.

To check whether Redis is working fine on your server or not, start the Redis server instance by running the following command in the terminal:

redis server

Then issue the following command in a different terminal window:

redis-cli ping

If the output of the preceding command is as follows, the Redis server is ready to be run:

Redis provides a command line, which provides some useful commands. There are two ways to execute commands on the Redis server. You can either use the previous method or just type redis-cli and hit Enter; we will be presented with the Redis command line, where we can then...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}