|
|
|
|
|
RedisExecuteCommand (Function) In french: RedisExécuteCommande Executes a command on a Redis server and retrieves the result. New in version 2025This function can also be used to manipulate data on a Valkey server. gRedis is redisConnection
gRedis.Server = "MonServeurRedis:7001"
r1 is redisResponse = RedisExecuteCommand(gRedis, "SET MaClé MaValeur")
r2 is redisResponse = RedisExecuteCommand(gRedis, "SET", "Clé avec espace", bufImage)
Syntax
<Result> = RedisExecuteCommand(<Connection> , <Command> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: redisResponse variable redisResponse variable that contains the result of the command execution. <Connection>: redisConnection variable Name of the redisConnection variable that corresponds to the Redis server connection. <Command>: Character string Text of the Redis command to execute. This command can contain parameters separated by space characters. <Parameter 1>: Type of optional parameter First optional parameter of the command. This parameter allows you to pass strings containing spaces or binary values to the command being run. Note: Strings are converted to UTF8 when the Command is sent to the Redis server. <Parameter N>: Type of optional parameter Nth command parameter. This parameter allows you to pass strings containing spaces or binary values to the command being run. Note: Strings are converted to UTF8 when the Command is sent to the Redis server. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|