ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / Big Data / Managing REDIS databases
  • How the pipeline works
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Retrieves the result of the execution of a Redis command that was added by RedisPipelineAdd.
New in version 2025
This function can also be used to manipulate data on a Valkey server.
Example
RedisPipelineAdd(gRedis, "set p1 pv1")
RedisPipelineAdd(gRedis, "set p2 pv2")
RedisPipelineAdd(gRedis, "get p2")
RedisPipelineAdd(gRedis, "get p1")

r1 is redisResponse = RedisPipelineGet(gRedis)
r2 is redisResponse = RedisPipelineGet(gRedis)
r3 is redisResponse = RedisPipelineGet(gRedis)
r4 is redisResponse = RedisPipelineGet(gRedis)
Syntax
<Result> = RedisPipelineGet(<Connection>)
<Result>: redisResponse variable
redisResponse variable that contains the result of the Redis command.
<Connection>: redisConnection variable
Name of the redisConnection variable that corresponds to the Redis server connection.
Remarks

How the pipeline works

When all the desired commands have been added to the pipeline, the results can be retrieved with RedisPipelineGet.
To avoid retrieving the results, it is possible to use RedisPipelineReset.
If RedisPipelineReset has not been used, there must be as many calls to RedisPipelineGet as there are to RedisPipelineAdd.
Business / UI classification: Business Logic
Component: wd300big.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help