|
|
|
|
|
RedisPipelineReset (Function) In french: RedisPipelineRAZ Ignores the results of the execution of a Redis command that was added by RedisPipelineAdd. New in version 2025This function can also be used to manipulate data on a Valkey server. RedisPipelineAdd(gRedis, "get p2")
RedisPipelineAdd(gRedis, "get p1")
RedisPipelineAdd(gRedis, "set p3 v3")
RedisPipelineAdd(gRedis, "set p4 v4")
r1 is redisResponse = RedisPipelineGet(gRedis)
r2 is redisResponse = RedisPipelineGet(gRedis)
RedisPipelineReset(gRedis)
Syntax
<Result> = RedisPipelineReset(<Connection>)
<Result>: Boolean - True if the operation was performed,
- False otherwise.
<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, you can use RedisPipelineReset. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|