Redis

How To Install and Secure Redis on CentOS — step-by-step Linux tutorial on Progressive Robot

How To Install and Secure Redis on CentOS

This tutorial provides instructions for installing Redis on a CentOS 7 server and using its built-in security features, in coordination with some other security configurations, to keep it from being accessed by unauthorized users.

Read more
How To Run Transactions in Redis — step-by-step Linux tutorial on Progressive Robot

How To Run Transactions in Redis

Redis allows you to plan a sequence of commands and run them one after another, a procedure known as a transaction. It’s impossible for clients to run commands while a transaction block is being executed, ensuring that the transaction is treated as a single isolated operation. This tutorial goes over how to how to execute and cancel transactions, and also includes some information on pitfalls commonly associated with transactions.

Read more
Como Expirar Chaves no Redis — step-by-step Linux tutorial on Progressive Robot

Como Expirar Chaves no Redis

O Redis é um datastore ou armazenamento de dados open-source de chave-valor na memória. As chaves Redis são persistentes por padrão, o que significa que o servidor Redis continuará armazenando-as, a menos que sejam excluídas manualmente. No entanto, pode…

Read more
How To Manage a Redis Database eBook — step-by-step Databases tutorial on Progressive Robot

How To Manage a Redis Database eBook

This book aims to provide an approachable introduction to Redis concepts by outlining many of the key-value store’s commands so readers can learn their patterns and syntax, thus building up readers’ understanding gradually. The goal for this book is to serve as an introduction to Redis for those interested in getting started with it, or key-value stores in general. For more experienced users, this book can function as a collection of helpful cheat sheets and in-depth reference.

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

How To Manage Sorted Sets in Redis

In Redis, sorted sets are a data type similar to sets in that both are non repeating groups of strings. The difference is that each member of a sorted set is associated with a score, allowing them to be sorted or ranked from the smallest score to the greatest. This tutorial explains how to create sorted sets, retrieve and remove their members, and create new sorted sets from existing ones.

Read more
How To Analyze Managed Redis Database Statistics Using the Elastic Stack on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Analyze Managed Redis Database Statistics Using the Elastic Stack on Ubuntu 18.04

Database monitoring is the continuous process of systematically tracking various metrics that show how the database is performing. In this tutorial, you’ll import database metrics, generated by the Redis INFO command, into Elasticsearch via Logstash. The imported data can later be analyzed and visualized in Kibana. By the end of the tutorial, you’ll have an automated system pulling in Redis statistics for later analysis.

Read more
CHAT