orientechnologies / OrientDB-NET.binary

C#/.NET binary driver for OrientDB
MIT License
93 stars 59 forks source link

Massive Insert in OrientDB-Net API ? #97

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 20 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()); }

mkhalid12 commented 8 years ago

@lvca Hi, please guide me about this?

GrayDelacluyse commented 8 years ago

@mkhalid12 cleaning up old issues, did you get this figured out?

user33 commented 5 years ago

please share me the code for oreintdb 2.2.33 database connection through c#.net