Redis – Strings Redis strings commands are used for managing string values in Redis. Following is the syntax for using Redis string commands. Syntax redis 127.0.0.1:6379> COMMAND KEY_NAME Example redis 127.0.0.1:6379> SET tutorialspoint redis OK redis 127.0.0.1:6379> GET tutorialspoint “redis” In the above example, SET and GET are the commands, while tutorialspoint is the key. […]
Author Archives: user
Redis – Commands Redis commands are used to perform some operations on Redis server. To run commands on Redis server, you need a Redis client. Redis client is available in Redis package, which we have installed earlier. Syntax Following is the basic syntax of Redis client. $redis-cli Example Following example explains how we can start […]
Redis – Data Types Redis supports 5 types of data types. Strings Redis string is a sequence of bytes. Strings in Redis are binary safe, meaning they have a known length not determined by any special terminating characters. Thus, you can store anything up to 512 megabytes in one string. Example redis 127.0.0.1:6379> SET name […]