• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Active Contributor
    Posts: 34
    Registered: ‎11-28-2012
    Accepted Solution

    XData vs XRecord in xrefs

    231 Views, 2 Replies
    12-18-2012 08:29 AM

    Hi

     

    I have created some files that have a long string as XData on every entity in the model. When I add the file as an xref it takes forever to get the file in as an xref when there is some size to the model. 

     

    Would it be faster to use XRecord, or is there a better way that can speed the loading of these xrefs?

    Please use plain text.
    ADN Support Specialist
    Posts: 162
    Registered: ‎07-24-2007

    Re: XData vs XRecord in xrefs

    12-21-2012 02:08 PM in reply to: Fredrik.Larsen

    How long are the strings?

     

    Generally speaking, you wont see much of an improvement in performance between XData and XRecords unless you are storing more than say 16K of data (the limit of xdata). An Xrecord data limit is 250 mb

     

     





    Fenton Webb

    Developer Technical Services

    Autodesk Developer Network


    Please use plain text.
    Valued Mentor
    Posts: 306
    Registered: ‎05-06-2012

    Re: XData vs XRecord in xrefs

    12-22-2012 02:09 AM in reply to: Fredrik.Larsen

    If the performance issues you are seeing are actually caused by the xdata (and I'm not sure that's the case), whether you can make improvements would depend on what exactly the xdata represents. For example, are there many entities that can contain identical values in their xdata (implying a 'one-to-many' relationship) ?  If so, then one way might be to store the duplicated string in one location (in the Named Objects Dictionary or a dictionary attached to the BlockTableRecord that contains the entities), and reference it using an ObjectId that can be stored in an XRecord attached to the referencing entities (ObjectId references are correctly translated by AutoCAD in the deep clone process, but there's no such translation for handle references in stored in Xdata).

     

     

    Please use plain text.