1
在redis中,有一種「分組」命令的方法來減少客戶端和服務器之間的交換次數。 (redis pipelining)OrientDB中是否有相當於Redis的「管道」?
當與成千上萬的命令一起使用時,它可以顯着降低服務器負載。
OrientDB中是否有等價物?
在redis中,有一種「分組」命令的方法來減少客戶端和服務器之間的交換次數。 (redis pipelining)OrientDB中是否有相當於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