0

我正在使用 将数据导入neo4j neoism,导入大数据时遇到一些问题,1000 个节点,需要 8 秒。这是导入 100 个节点的代码的一部分。非常基本的代码,需要改进,任何人都可以帮我改进这个吗?

var wg sync.WaitGroup
for _, itemProps := range items {
    wg.Add(1)
    go func(i interface{}) {
        s := time.Now()
        cypher := neoism.CypherQuery{
            Statement: fmt.Sprintf(`
                CREATE (%v)
                SET i = {Props}
                RETURN i
            `, ItemLabel),
            Parameters: neoism.Props{"Props": i},
        }
        if err := database.ExecuteCypherQuery(cypher); err != nil {
            utils.Error(fmt.Sprintf("error ImportItemsNeo4j! %v", err))
            wg.Done()
            return
        }
        utils.Info(fmt.Sprintf("import Item success! took: %v", time.Since(s)))
        wg.Done()
    }(itemProps)
}
wg.Wait()
4

1 回答 1

4

Afaik neoism 仍然使用旧 API,您应该使用 cq 代替:https ://github.com/go-cq/cq

你也应该批量创建,

即每个请求发送多个语句,例如每个请求 100 个语句

甚至更好地将参数列表发送到单个密码查询:

例如 {data} 是一个[{id:1},{id:2},...]

UNWIND {data} as props
CREATE (n:Label) SET n = props
于 2016-02-18T08:45:05.087 回答