管道和事务
了解如何使用 Redis 管道和事务
Redis 允许您将一系列命令一起批量发送到服务器。 您可以使用两种类型的批处理:
- 管道通过发送多个命令来避免网络和处理开销 发送到服务器。然后服务器发回 包含所有响应的单一通信。有关更多信息,请参阅 Pipelining 页面 信息。
- 事务保证所有包含的命令都将执行 完成,而不会被来自其他客户端的命令打断。 有关更多信息,请参阅 Transactions (交易) 页面。
执行管道
有两种方法可以在管道中执行命令。首先是
要将命令包含在Promise.all()
调用,如以下示例所示。被锁链的then(...)
callback 是可选的
对于写入数据且仅返回
status 结果。
await Promise.all([
client.set('seat:0', '#0'),
client.set('seat:1', '#1'),
client.set('seat:2', '#2'),
]).then((results) =>{
console.log(results);
// >>> ['OK', 'OK', 'OK']
});
await Promise.all([
client.get('seat:0'),
client.get('seat:1'),
client.get('seat:2'),
]).then((results) =>{
console.log(results);
// >>> ['#0', '#1', '#2']
});
You can also create a pipeline object using the
multi()
method
and then add commands to it using methods that resemble the standard
command methods (for example, set()
and get()
). The commands are
buffered in the pipeline and only execute when you call the
execAsPipeline()
method on the pipeline object. Again, the
then(...)
callback is optional.
await client.multi()
.set('seat:3', '#3')
.set('seat:4', '#4')
.set('seat:5', '#5')
.execAsPipeline()
.then((results) => {
console.log(results);
// >>> ['OK', 'OK', 'OK']
});
The two approaches are almost equivalent, but they have different behavior
when the connection is lost during the execution of the pipeline. After
the connection is re-established, a Promise.all()
pipeline will
continue execution from the point where the interruption happened,
but a multi()
pipeline will discard any remaining commands that
didn't execute.
Execute a transaction
A transaction works in a similar way to a pipeline. Create a
transaction object with the multi()
command, call command methods
on that object, and then call the transaction object's
exec()
method to execute it.
const [res1, res2, res3] = await client.multi()
.incrBy("counter:1", 1)
.incrBy("counter:2", 2)
.incrBy("counter:3", 3)
.exec();
console.log(res1); // >>> 1
console.log(res2); // >>> 2
console.log(res3); // >>> 3
Watch keys for changes
Redis supports optimistic locking to avoid inconsistent updates
to different keys. The basic idea is to watch for changes to any
keys that you use in a transaction while you are are processing the
updates. If the watched keys do change, you must restart the updates
with the latest data from the keys. See
Transactions
for more information about optimistic locking.
The code below reads a string
that represents a PATH
variable for a command shell, then appends a new
command path to the string before attempting to write it back. If the watched
key is modified by another client before writing, the transaction aborts.
Note that you should call read-only commands for the watched keys synchronously on
the usual client
object but you still call commands for the transaction on the
transaction object created with multi()
.
For production usage, you would generally call code like the following in
a loop to retry it until it succeeds or else report or log the failure.
// Set initial value of `shellpath`.
client.set('shellpath', '/usr/syscmds/');
// Watch the key we are about to update.
await client.watch('shellpath');
const currentPath = await client.get('shellpath');
const newPath = currentPath + ':/usr/mycmds/';
// Attempt to write the watched key.
await client.multi()
.set('shellpath', newPath)
.exec()
.then((result) => {
// This is called when the pipeline executes
// successfully.
console.log(result);
}, (err) => {
// This is called when a watched key was changed.
// Handle the error here.
console.log(err);
});
const updatedPath = await client.get('shellpath');
console.log(updatedPath);
// >>> /usr/syscmds/:/usr/mycmds/
On this page