• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: efficient copy?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: efficient copy?


  • Subject: Re: efficient copy?
  • From: Ken Anderson <email@hidden>
  • Date: Sun, 01 Mar 2015 13:36:34 -0500

How often does this have to happen?  Does it need to happen while other operations are going on that might interfere?

My basic approach is KISS unless there’s a reason to do it otherwise, so I would just do a long response page that does this with EOs, and maybe multiple EC’s in a loop to keep memory usage low.

> On Mar 1, 2015, at 10:51 AM, OC <email@hidden> wrote:
>
> Hello there,
>
> I'll need to copy thousands of objects from one table to another; the copying'll be almost verbatim, but for a relationship. Namely,
>
> entity OldAuction <->> OldRecord (relationships records->> and inverse <-auction)
> entity NewAuction <->> NewRecord (relationships records->> and inverse <-newAuction)
>
> Entity NewRecord has all attributes of OldRecord (and perhaps a couple of others)
>
> The naïve code would be something like
>
> ===
> def orig=... an object of the OldAuction entity ...
> def new=... an object of the NewAuction entity ...
> orig.allRecords().each { OldRecord old ->
>  def newRecord=EOUtilities.createAndInsertInstance(new.editingContext(),'NewRecord')
>  newRecord.newAuction=new
>  newRecord.takeValuesFromDictionary(old.valuesForKeys(old.attributeKeys()))
> }
> new.editingContext().saveChanges()
> ===
>
> There's no need to make this lightning fast, e.g., a dedicated SQL procedure would definitely be an overkill; but still, it should be as fast as possible without making the code too complex, unintelligible and unmaintainable. I wonder, what's the best way? Guess I might e.g., fetch rawrows for orig.allRecords somehow, and use _them_ for the takeValuesFromDictionary argument?
>
> Thanks,
> OC
>
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list      (email@hidden)
> Help/Unsubscribe/Update your Subscription:
>
> This email sent to email@hidden


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


References: 
 >efficient copy? (From: OC <email@hidden>)

  • Prev by Date: Re: clone eoentity/eoattribute/eorelationship
  • Next by Date: Re: WOInstaller.jar crashes
  • Previous by thread: efficient copy?
  • Next by thread: Re: efficient copy?
  • Index(es):
    • Date
    • Thread