- Published on
Introduction to redis and Strings in Redis
- Authors
- Name
- Milad E. Fahmy
- @miladezzat12
Redis
Redis is an in-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker, with optional durability. Redis supports different kinds of abstract data structures, such as strings, lists, maps, sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indices.
Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes, and streams. Redis has built-in replication, Lua scripting, LRU eviction, transactions, and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster Read More
Redis Data types
- String
- List
- Set
- sored Set
- Hash
Storing Strings in Redis: Insertion and Retrieval Commands
- SET Command
SET key value
- GET Command
GET key
- SETEX Command
SETEX key seconds value
- PSETEX command
PSETEX key milliseconds value
- SETNX Command
SETNX key value ## command is used if a key is already present, and not update the value
- STRLEN Command
STRLEN key ## Get the value length of a key
- MSET Command
MSET key1 value key2 value ## set multiple keys values
- MGET Command
MGET key1 key2 ## Get multiple values of keys
Storing Strings in Redis: Utility Commands
- KETS This get all keys on the database
KEYS *
- INCR
This increment value of key by one, but the value must be a number, if other it will retunr
(error) ERR value is not an integer or out of range
.
INCR key
- INCRBY
The same as
INCR
but increase by specific count.
INCRBY key count
- INCRBYFLOAT
The same as
INCR
but increase by specific float number.
INCRBYFLOAT key floatValue
- DECR This for decrease value by one, it must be a number
DECR key
- DECRBY
The same as
DECR
, but decrease by specific count
DECRBY key count
- DEL This for deleting key from database
DEL key
- FLUSHALL This for deleting all keys from database
FLUSHALL
- APPEND This for appending string to key
APPEND key valueToBeAppended