在 redis 中,有一种方法可以"分组"命令以减少客户端和服务器之间的交换次数。(雷迪斯流水线(
当与数百或数千个命令一起使用时,它可以显着减少服务器负载。
OrientDB中有等效的吗?
是的,SQL BATCH。例:
begin
let account = create vertex Account set name = 'Luke'
let city = select from City where name = 'London'
let e = create edge Lives from $account to $city
commit retry 100
return $e