Flux Redis v0.0.2 FluxRedis.HashManager.Commands.Has View Source

Command and parser generator to check if field exists in a hash.

Link to this section Summary

Functions

Generates the command/0 and the parser/0 to check if field exists in a hash.

Link to this section Types

Link to this type

command()

View Source
command() :: list()
Link to this type

key_data()

View Source
key_data() :: atom() | integer() | float() | String.t()
Link to this type

parser()

View Source
parser() :: (integer() -> boolean())

Link to this section Functions

Link to this function

has(hash, key_data)

View Source (since 0.0.2)
has(atom(), [key_data()] | key_data()) :: {command(), parser()}

Generates the command/0 and the parser/0 to check if field exists in a hash.

Parameters

  • hash - The atom/0 defined in FluxRedis hash_storages application configuration.

  • key_data - The key_data/0 with the values of each key defined in FluxRedis hash_storages application configuration.

Examples

For practical examples, please check FluxRedis.HashManager.has/3.