Database.Guide

Skip to content

Beginners

  • What is a Database?
  • Database Tutorial

SQL

  • SQL Tutorial
  • SQL Reference
  • SQL Joins Tutorial
  • SQL Transactions Tutorial
  • Basic SQL Queries

Categories

  • Azure SQL Edge (17)
  • Database Concepts (99)
  • Database Tools (72)
  • DBMS (9)
  • DuckDB (149)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,170)
  • SQLite (299)

Tag: lists

Redis RPUSHX Command Explained

Posted on August 10, 2022August 19, 2022 by Ian

In Redis, the RPUSHX command inserts one or more values into the tail of the list at the specified key, but only if the key exists and it contains a list.

If the key doesn’t exist, no operation is performed. If the key exists but it doesn’t contain a list, an error is returned.

Continue reading →
Redis commands, lists, what is

Redis RPUSH Command Explained

Posted on August 9, 2022August 19, 2022 by Ian

In Redis, the RPUSH command inserts one or more values into the tail of the list at the specified key.

If the key doesn’t exist, it is created as an empty list before performing the push operation. If the key already holds a value that is not a list, an error is returned.

Continue reading →
Redis commands, lists, what is

Redis LPUSHX Command Explained

Posted on August 7, 2022August 19, 2022 by Ian

In Redis, the LPUSHX command inserts one or more values into the head of the list at the specified key, but only if the key exists and it contains a list.

If the key doesn’t exist, no operation is performed. If the key exists but it doesn’t contain a list, an error is returned.

Continue reading →
Redis commands, lists, what is

Redis LPUSH Command Explained

Posted on August 6, 2022August 19, 2022 by Ian

In Redis, the LPUSH command inserts one or more values into the head of the list at the specified key.

If the key doesn’t exist, it is created as an empty list before performing the push operation. If the key already holds a value that is not a list, an error is returned.

Continue reading →
Redis commands, lists, what is
  • «
  • 1
  • …
  • 4
  • 5
  • 6

About Database.Guide | Privacy Policy