Okay, I have  somewhat narrowed the performance hit to the lines of code 
where I update the LINKSET... My application screams when I don't update 
the LINKSET.

I.e.
Set<OIdentifiable> logEntries = log.field("log_events");
logEntries.add(logEntryDocument.getIdentity());

I have also tried this:
OCommandSQL cmd = new OCommandSQL(
  String.format("UPDATE %s ADD log_events = %s", log.getIdentity(), 
logEntryDocument.getIdentity()));  
db.command(cmd).execute();
But this is actually slower...

Is there a more efficient way of updating a LINKSET/LINKLIST or is there no 
way to get past the slowdown due to the growing size of the list?

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to