Redis

How To Connect to a Managed Database on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Connect to a Managed Database on Ubuntu 18.04

If you’re new to working with managed databases, the best way to perform certain tasks, like connecting to the database, may not be self-evident. In this guide, we will go over how to install client programs for a variety of database management systems, including PostgreSQL, MySQL, and Redis, on an Ubuntu 18.04 server. We’ll also explain how to use these programs to connect to a managed database instance.

Read more
How To Encrypt Traffic to Redis with Spiped on Ubuntu 16.04 — step-by-step Linux tutorial on Progressive Robot

How To Encrypt Traffic to Redis with Spiped on Ubuntu 16.04

Redis is an open-source key-value data store, using an in-memory storage model with optional disk writes for persistence. It features transactions, a pub/sub messaging pattern, and automatic failover among other functionality. Redis has clients written in most languages with…

Read more
How To Troubleshoot Issues in Redis — step-by-step Linux tutorial on Progressive Robot

How To Troubleshoot Issues in Redis

Redis comes with several commands that can help with troubleshooting and debugging issues. Because of its nature as an in-memory key-value store, many of these commands focus on memory management, but there are others that are valuable for providing an overview of the state of your Redis server. This tutorial will provide details on how to use some of these commands to help diagnose and resolve issues you may run into as you use Redis.

Read more
Como Gerenciar Hashes no Redis — step-by-step Linux tutorial on Progressive Robot

Como Gerenciar Hashes no Redis

O Redis é um datastore ou armazenamento de dados open-source de chave-valor na memória. Um hash do Redis é um tipo de dado que representa um mapeamento entre um campo de string e um valor de string. Os hashes…

Read more
How To Manage Redis Databases and Keys — step-by-step Linux tutorial on Progressive Robot

How To Manage Redis Databases and Keys

Redis is a key-value data store, which is a type of NoSQL database where keys serve as unique identifiers for their associated values. Any given Redis instance includes a number of databases, each of which can hold many different keys of a variety of data types. In this tutorial, we will go over how to select a database, move keys between databases, and manage and delete keys.

Read more
How To Manage Hashes in Redis — step-by-step Linux tutorial on Progressive Robot

How To Manage Hashes in Redis

A Redis hash is a data type that represents a mapping between a string field and a string value. A single hash can hold many field-value pairs and are designed to not take up much space, making them ideal for representing data objects. For example, a hash might represent a customer, and include fields like ‘name’, ‘address’, ’email’, or ‘customer_id’. This tutorial will go over how to manage hashes in Redis, from creating them to retrieving and deleting the data held within a hash.

Read more
CHAT