使用.NET二进制文件对orientdb中的记录进行更长的插入和读取时间

时间:2016-06-29 17:20:58

标签: c# .net orientdb graph-databases orientdb-2.1

我正在使用以下查询从.NET二进制文件插入数据库,并且需要接近 5小时来加载仅具有 12000顶点和57000边缘

以下是查询:

1)

Update Account SET From_Date = ?, To_Date = ?, out = (select from Firm where name = ?), in = (select from Contact where LastName = ? and FirstName = ?) UPSERT WHERE out = (select from Firm where name = ?) and in = (select from Contact where LastName = ? and FirstName = ?)

2)

namespace Foo{
    void SomeFunc();
    void SomeOtherFunc(int);
}

我在代码中使用2)查询两次,参数通过字符串数组传递,1)使用一次。查询一个接一个地顺序运行。

我在OrientDB-Net.binary.Innov8tive.0.1.5软件包中使用Orientdb 2.2.3版本

在代码或orientdb服务器xml中是否有任何配置可以使读取和插入快速?

你能帮帮我吗? 谢谢!

0 个答案:

没有答案