|
|
|
|
|
RedisGet (Function) In french: RedisRécupère Gets the value of a key from a Redis server as a string. New in version 2025This function can also be used to manipulate data on a Valkey server. gRedis is redisConnection
gRedis.Server = "MonServeurRedis:7001"
RedisSet(gRedis, "MaClé", "MaValeur", 0 s)
Trace(RedisGet(gRedis, "MaClé"))
Syntax
<Result> = RedisGet(<Connection> , <Key>)
<Result>: Character string - Key value.
- Null, if the key has no value.
<Connection>: redisConnection variable Name of the redisConnection variable that corresponds to the Redis server connection. <Key>: Character string or Secret string Name of the key to get.
New in version 2025Secret strings: If you use the secret string vault, the type of secret string used for this parameter must be "ANSI or Unicode string". To learn more about secret strings and how to use the vault, see Secret string vault.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|