Redis Caching & Messaging (Pub/Sub, Streams) · Lezione

Nozioni di base sulla Redis CLI

Impari a connettersi a Redis, eseguire comandi di base e gestire i dati tramite l’interfaccia a riga di comando.

Lezione 2 di 411 passaggi

Nozioni di base sulla Redis CLI è una lezione Redis Caching & Messaging (Pub/Sub, Streams) gratuita su CoddyKit. Questa è la lezione 2 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Redis Caching & Messaging (Pub/Sub, Streams), e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Redis Caching & Messaging (Pub/Sub, Streams) include 4 lezioni in totale.

Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.

What is Redis CLI?

The redis-cli lets you talk to your Redis server directly — perfect for quick tests, debugging, and admin without writing any app code.

Connecting to Redis

Connect by running redis-cli in your terminal. It defaults to 127.0.0.1 on port 6379 and drops you at a prompt ready for commands.

Your First Command: PING

PING checks that the server is alive — type it and a healthy Redis replies PONG. Your simplest health check.

Storing Data: SET

SET stores a string value under a key: SET key value. Like sticking a labeled note on the fridge — the example shows it returning OK.

Retrieving Data: GET

GET retrieves a key's value: GET key. If the key doesn't exist, Redis returns (nil) instead.

Updating Values

Run SET on an existing key and it overwrites the old value — no confirmation prompt, so be careful. The example shows the value getting replaced.

Deleting Data: DEL

DEL removes one or more keys: DEL key [key ...]. It returns how many keys were actually deleted.

Checking Key Existence: EXISTS

EXISTS tells you if a key is present without fetching its value — returning 1 if it exists, 0 if not.

Counting with INCR & DECR

Redis does counters: INCR bumps a key's integer up by one, DECR drops it by one. A missing key starts at 0 before the operation.

CLI Command Challenge

What will be the final value of the key mycounter after executing these Redis CLI commands?

SET mycounter 5
INCR mycounter
DECR mycounter
INCR mycounter
DEL mycounter
INCR mycounter

Recap: Redis CLI Basics

Recap: with the redis-cli you can connect, PING, SET and GET strings, overwrite keys, DEL them, check EXISTS, and run INCR/DECR counters.

Gratis per iniziare

Impara Redis Caching & Messaging (Pub/Sub, Streams) con un tutor IA — gratis

Scrivi ed esegui vero codice nel tuo browser, ricevi aiuto istantaneo da un tutor IA disponibile 24/7, e riprendi da dove hai lasciato sul web o nell'app.

Corsi
12
Lezioni
48

Domande Frequenti

La lezione «Nozioni di base sulla Redis CLI» è gratuita?

Sì — il testo completo di «Nozioni di base sulla Redis CLI» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Redis Caching & Messaging (Pub/Sub, Streams), passa a CoddyKit PRO. Il corso Redis Caching & Messaging (Pub/Sub, Streams) include 4 lezioni in totale.

Cosa imparerò in «Nozioni di base sulla Redis CLI»?

Impari a connettersi a Redis, eseguire comandi di base e gestire i dati tramite l’interfaccia a riga di comando. Eserciti Redis Caching & Messaging (Pub/Sub, Streams) con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.

Ho bisogno di esperienza per iniziare Redis Caching & Messaging (Pub/Sub, Streams)?

Non è richiesta alcuna esperienza precedente. Redis Caching & Messaging (Pub/Sub, Streams) su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 2 di 4.

Quanto tempo richiede la lezione «Nozioni di base sulla Redis CLI»?

La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.

Posso scrivere ed eseguire codice in questa lezione Redis Caching & Messaging (Pub/Sub, Streams)?

Sì. Ogni lezione Redis Caching & Messaging (Pub/Sub, Streams) include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.

Tutte le lezioni di questo corso

  1. Introduzione a Redis
  2. Nozioni di base sulla Redis CLI
  3. Strutture dati fondamentali di Redis
  4. Scadenza delle chiavi e TTL in Redis
← Torna a Redis Caching & Messaging (Pub/Sub, Streams)