Redis – Environment In this chapter, you will learn about the environmental setup for Redis. Install Redis on Ubuntu To install Redis on Ubuntu, go to the terminal and type the following commands − $sudo apt-get update $sudo apt-get install redis-server This will install Redis on your machine. Start Redis $redis-server Check If Redis is […]
Category Archives: redis
Redis – Scripting Redis scripting is used to evaluate scripts using the Lua interpreter. It is built into Redis starting from version 2.6.0. The command used for scripting is EVAL command. Syntax Following is the basic syntax of EVAL command. redis 127.0.0.1:6379> EVAL script numkeys key [key …] arg [arg …] Example Following example explains […]
Redis Tutorial Job Search Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server, since the keys can contain strings, hashes, lists, sets and sorted sets. Redis is written in C. This tutorial provides good understanding on Redis concepts, needed to create and deploy a […]