yojimbo87 / OrientDB-NET.binary

C#/.NET binary driver for OrientDB
MIT License
21 stars 19 forks source link

Massive Insert in OrientDB-Net API ? #45

Open mkhalid12 opened 8 years ago

mkhalid12 commented 8 years ago

How should I implement massive insert in OrientDB I have 10K Vertex have almost 1M Edges how should i Load as fast as possible? Currently i am using this for loop and it takes more than 30 mins to complete. Please suggest some feasible solution.

List _listRating = LoadRatings(_PathRatings); foreach (Rating r in _listRating) { i++; oDB.Command(" create edge rated from (select from Users where userID = " + r.userID + ") to (select from Movies where MovieID = " + r.movieID + " ) set rating =" + r.Ratings + " "); Console.WriteLine("Creating Ratings...." + i.ToString()); }

yojimbo87 commented 8 years ago

Hi, I would recommend to ask this on the official repository since this one is no longer maintained.