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 (126)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,169)
  • SQLite (298)

Tag: commands

Redis ZADD Command Explained

Posted on December 15, 2022December 18, 2022 by Ian

In Redis, the ZADD command is used to add one or more members to a sorted set, or to update the score for members that already exist in the sorted set.

It returns the number of elements added to the sorted set, or the number of elements updated if the CH argument is used.

Continue reading →
Redis commands, what is

Redis HINCRBYFLOAT Command

Posted on November 16, 2022 by Ian

The Redis HINCRBYFLOAT command increments the field in the hash at the specified key by a floating point number. We specify how much we want the field to increment by when we call the command.

Continue reading →
Redis commands, what is

Redis HINCRBY Command

Posted on November 16, 2022 by Ian

The Redis HINCRBY command increments the number that’s stored at the specified field in the hash at the specified key. We specify how much we want the field to increment by when we call the command.

Continue reading →
Redis commands, what is

Redis HVALS Command

Posted on November 15, 2022 by Ian

The Redis HVALS command returns all values in the hash stored at the specified key.

Continue reading →
Redis commands, what is

Redis HLEN Command

Posted on November 14, 2022 by Ian

The Redis HLEN command returns the number of fields in the hash stored at the specified key.

Continue reading →
Redis commands, what is

Redis HGETALL Command

Posted on November 12, 2022 by Ian

The Redis HGETALL command returns all fields and values from the hash at the specified key.

Continue reading →
Redis commands, what is

Redis HMGET Command

Posted on November 11, 2022 by Ian

The Redis HMGET command allows us to get multiple values from a hash. It returns the value/s associated with the specified field/s in the hash at the specified key.

Continue reading →
Redis commands, what is

Redis HGET Command

Posted on November 10, 2022 by Ian

The Redis HGET command allows us to get a value from a hash. It returns the value associated with the specified field in the hash at the specified key.

Continue reading →
Redis commands, what is

Redis HRANDFIELD Command

Posted on November 8, 2022November 9, 2022 by Ian

The Redis HRANDFIELD command allows us to get a random field from a given key.

The command accepts several arguments that allows us to specify the number of random fields returned, whether to include the same field multiple times, and whether or not to include the values with each field returned.

The HRANDFIELD command was introduced in Redis 6.2.0.

Continue reading →
Redis commands, what is

Redis HEXISTS Command

Posted on November 7, 2022 by Ian

In Redis, the HEXISTS command allows us to check whether a field exists in a given hash. We pass the name of the key and the field to the command, and it returns 1 if the field exists, and 0 if it doesn’t.

Continue reading →
Redis commands, what is
  • «
  • 1
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • …
  • 14
  • »

About Database.Guide | Privacy Policy